diff --git a/sisr1/tp04_scripts_admin/createGroups.sh b/sisr1/tp04_scripts_admin/createGroups.sh index fb0c238..ab9f020 100644 --- a/sisr1/tp04_scripts_admin/createGroups.sh +++ b/sisr1/tp04_scripts_admin/createGroups.sh @@ -7,23 +7,17 @@ do # A chaque itération, stocker le métier dans $metier metier=$(echo $ligne | cut -d "," -f5) # Vérification de la présence du groupe Accountant -> ajout de la fonction "Accountant" à $groups - if [[ $(echo $line | grep "Accountant") != "" ]] ; then - echo "Le groupe est déjà créé" - else ; + if [[ $(echo $line | grep "Accountant") == "" ]] ; then groupadd accountant fi # Vérification de la présence du groupe Management -> ajout de la fonction "Management" à $groups - if [[ $(echo $line | grep "Management") != "" ]] ; then - echo "Le groupe est déjà créé" - else ; + if [[ $(echo $line | grep "Management") == "" ]] ; then groupadd management fi # Vérification de la présence du groupe Production -> ajout de la fonction "Production" à $groups - if [[ $(echo $line | grep "Production") != "" ]] ; then - echo "Le groupe est déjà créé" - else ; + if [[ $(echo $line | grep "Production") == "" ]] ; then groupadd production fi echo $metier