From b82a4e04cc7222d22be8af56d9814fb7d0e6583b Mon Sep 17 00:00:00 2001 From: "tom.guerin" Date: Thu, 20 Feb 2025 14:47:43 +0100 Subject: [PATCH] new --- sisr1/tp04_scripts_admin/createLogins.sh | 23 +++++++++++------- sisr1/tp04_scripts_admin/createUsers.sh | 28 ++++++++++++---------- sisr1/tp04_scripts_admin/logins.csv | 30 ++++++++++++++++++++++++ 3 files changed, 60 insertions(+), 21 deletions(-) create mode 100644 sisr1/tp04_scripts_admin/logins.csv diff --git a/sisr1/tp04_scripts_admin/createLogins.sh b/sisr1/tp04_scripts_admin/createLogins.sh index 6ed0b59..9f6a6c9 100644 --- a/sisr1/tp04_scripts_admin/createLogins.sh +++ b/sisr1/tp04_scripts_admin/createLogins.sh @@ -1,14 +1,21 @@ #!/bin/bash -fichier_a_lire=./Users.csv #creation fichier a lire -fichier_a_ecrire=./logins.csv #creation fichier a lire + stockage dans cette variable -rm $fichier_a_ecrire 2> /dev/null #supprimer le fichier avant d'executer le script. / redirection des erreurs -touch $fichier_a_ecrire #creer le fichier a l'execution le script +fichier_a_lire=./Users.csv #creation fichier a lire +fichier_a_ecrire=./logins.csv #creation fichier a lire + stockage dans cette variable +rm $fichier_a_ecrire 2> /dev/null #supprimer le fichier avant d'executer le script. / redirection des erreurs +touch $fichier_a_ecrire #creer le fichier a l'execution le script -while read ligne +while read line do aecrire="" -login=? -password=? last_name=$(echo $line | cut -d "," -f2) first_name=$(echo $line | cut -d "," -f1) -group=$(echo $line | cut -d "," -f5) \ No newline at end of file +login=$(echo $first_name | cut -c1)$last_name +login=$(echo $login | tr [:upper:] [:lower:]) +login=$(echo $login | tr -dc [:alnum:]) +password=$(tr -dc '12345!@#$%^&*()_A-Z-a-z-0-9'> $fichier_a_ecrire +done < $fichier_a_lire \ No newline at end of file diff --git a/sisr1/tp04_scripts_admin/createUsers.sh b/sisr1/tp04_scripts_admin/createUsers.sh index d8ba9f3..ed97de1 100644 --- a/sisr1/tp04_scripts_admin/createUsers.sh +++ b/sisr1/tp04_scripts_admin/createUsers.sh @@ -1,16 +1,18 @@ #!/bin/bash -fichier=./Users.csv #Variable fichier qui stock le chemin du fichier -$ touch ./logins.csv -$ useradd -d /home/logins.csv -s /bin/bash username +fichier_a_lire=./logins.csv -while read ligne #définit la variable "ligne" comme le contenu de la ligne du fichier en cours de lecture + +while read line do - #a chaque iteration on rentre dans la variable metier on isole le champ 5 de la ligne. - metier=$(echo $ligne | cut -d "," -f5) - if [[ $(grep $metier /etc/group) == "" ]] ; then - groupadd $metier - fi - #on cherche metier dans le repertoire des groupe - #grep $metier /etc/group - #on rentre les données du fichier avec done < -done < $fichier + user=$(echo $line | cut -d ";" -f1) + useradd -m -s "/bin/bash" $user + + group=$(echo $line | cut -d ";" -f5) + usermod -aG $group $user + + passwd=$(echo $line | cut -d ";" -f2) + + echo $user:$passwd | chpasswd + + chown $user:$user /home/$user +done < $fichier_a_lire \ No newline at end of file diff --git a/sisr1/tp04_scripts_admin/logins.csv b/sisr1/tp04_scripts_admin/logins.csv new file mode 100644 index 0000000..44836c2 --- /dev/null +++ b/sisr1/tp04_scripts_admin/logins.csv @@ -0,0 +1,30 @@ +eberthelmot;esBc1I^F;Ermengarde;Berthelmot;Accountant +kbunker;-barRdEy;Kassi;Bunker;Production +mmccallum;*HTbYCAK;Moises;McCallum;Production +plune;%bWyo_Sb;Patrizio;Lune;Accountant +beverix;waorB$Pf;Blanch;Everix;Accountant +skibbel;09JS7NTQ;Stafani;Kibbel;Production +imosdell;ZM9J^G(n;Ignacius;Mosdell;Management +jwallerbridge;q#SwzKZd;Jeana;Waller-Bridge;Management +edressel;PKLYzT6p;Elroy;Dressel;Production +tstrettell;x7D6zjD#;Thea;Strettell;Production +sinsoll;9zu5856m;Solomon;Insoll;Accountant +cfeedome;F@CQrTak;Carri;Feedome;Accountant +pchetwind;I%xQIWVK;Padraic;Chetwind;Management +sdugo;uRFMtM0K;Solly;D'Ugo;Production +kmaccostigan;4w5J7r(n;Konstanze;MacCostigan;Accountant +rpowlesland;(vzM5irO;Roxane;Powlesland;Management +okennealy;iMM$W0A@;Orelle;Kennealy;Production +ssoitoux;6NX^zZPy;Sukey;Soitoux;Production +nsyce;5f__@IKV;Nelli;Syce;Production +cshillam;ZK4pq!yg;Clarisse;Shillam;Production +cgueny;P#*e0UNs;Carin;Gueny;Management +driepel;sjECnfF);Donny;Riepel;Production +dralfe;cb4icl_6;Daniella;Ralfe;Production +lclynmans;WmITS!v6;Lexy;Clynmans;Production +gadamthwaite;CK!Fn1!!;Gardiner;Adamthwaite;Production +wlippett;HBRh6%MR;Woodman;Lippett;Production +nmunnion;4(LzplYR;Nadya;Munnion;Production +lhabershon;puQ#bc1X;Llewellyn;Habershon;Production +igreatrex;ij*LJVZh;Isaak;Greatrex;Production +dfrostdyke;fxm&GVn5;Darill;Frostdyke;Production