improved checks display on some modules

This commit is contained in:
levasseur
2022-02-18 18:19:15 +01:00
parent 3f554d8bb7
commit 198763c01c
3 changed files with 18 additions and 16 deletions

View File

@@ -21,11 +21,11 @@ export DEP_install_desktop="upgrade_dist"
install_desktop()
{
if [[ -n $X11_DRV ]]; then
prnt I "Installation de pilotes supplémentaires X11..."
prnt I "Installing additionnal X11 drivers..."
pkginst $X11_DRV
fi
if [[ $UBUNTU_FLAVOR ]]; then
prnt I "Installation de l'environnement $UBUNTU_FLAVOR..."
prnt I "Installing $UBUNTU_FLAVOR environment..."
pkginst ${UBUNTU_FLAVOR}-desktop
fi
set_reboot_needed
@@ -34,12 +34,12 @@ install_desktop()
precheck_install_desktop()
{
if [[ -z $UBUNTU_FLAVOR ]]; then
prnt W "Pas de saveur Ubuntu choisie, aucun environnement de bureau ne sera installé !"
prnt W "No Ubuntu flavor chosen, no desktop environment will be installed!"
else
prnt m "La saveur $UBUNTU_FLAVOR sera installée..."
prnt m " * The flavor $UBUNTU_FLAVOR will be installed..."
fi
if [[ -n $X11_DRV ]]; then
prnt W "Des pilotes non libres seront installé."
prnt W "Non free drivers will be installed."
fi
}