Ajout du fichier createLogins.sh vFinale
This commit is contained in:
parent
f1f82bf99e
commit
a1aba478f6
31
sisr1/tp04_scripts_admin/tp04/createLogins.sh
Normal file
31
sisr1/tp04_scripts_admin/tp04/createLogins.sh
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
file='./Users.csv'
|
||||||
|
loginFile='./logins.csv'
|
||||||
|
|
||||||
|
|
||||||
|
rm $loginFile 2> /dev/null # Redirection des erreurs
|
||||||
|
touch $loginFile
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
while read line # Utilisation d'une boucle while car plus paratique pour lire un fichier
|
||||||
|
do
|
||||||
|
# A chaque itération, writeFile va se réinitialiser
|
||||||
|
writeFile=""
|
||||||
|
|
||||||
|
# A chaque itération récupère dans des variables le nom, prénom et le groupe
|
||||||
|
fName=$(echo $line | cut -d "," -f1 )
|
||||||
|
lName=$(echo $line | cut -d "," -f2 )
|
||||||
|
group=$(echo $line | cut -d "," -f5 )
|
||||||
|
login=$(echo $fName | cut -c1)$lName
|
||||||
|
login=$(echo $login | tr [:upper:] [:lower:])
|
||||||
|
login=$(echo $login | tr -dc [:alnum:])
|
||||||
|
|
||||||
|
# A chaque itération stocke le mot de passer pour chaque utilisateur dans password
|
||||||
|
password=$(tr -dc A-Za-z0-9 </dev/urandom | head -c8; echo)
|
||||||
|
|
||||||
|
# A chaque itération, ajout des infos ci-dessous dans loginFile
|
||||||
|
writeFile="$login;$password;$fName;$lName;$group"
|
||||||
|
echo $writeFile >> $loginFile
|
||||||
|
done < $file
|
18
sisr1/tp04_scripts_admin/tp04/gitpush.sh
Normal file
18
sisr1/tp04_scripts_admin/tp04/gitpush.sh
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# Permet de vérifier si un message a été passé en argument
|
||||||
|
if [ -z "$1" ]; then
|
||||||
|
read -p "Erreur : Entrez un message : " $message
|
||||||
|
else
|
||||||
|
message=$1
|
||||||
|
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Ajout des fichiers modifiés
|
||||||
|
git add .
|
||||||
|
|
||||||
|
# Commit avec le message
|
||||||
|
git commit -m "$message"
|
||||||
|
|
||||||
|
# Push vers le dépôt Gitea
|
||||||
|
git push -u https://yann.lereuille@gitea.lyc-lecastel.fr/yann.lereuille/siotp.git
|
30
sisr1/tp04_scripts_admin/tp04/logins.csv
Normal file
30
sisr1/tp04_scripts_admin/tp04/logins.csv
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
eberthelmot;EV14Ml0y;Ermengarde;Berthelmot;Accountant
|
||||||
|
kbunker;UH2lMt0J;Kassi;Bunker;Production
|
||||||
|
mmccallum;inL1wFGX;Moises;McCallum;Production
|
||||||
|
plune;CdeumP6l;Patrizio;Lune;Accountant
|
||||||
|
beverix;XkA92SNB;Blanch;Everix;Accountant
|
||||||
|
skibbel;DLPakOJc;Stafani;Kibbel;Production
|
||||||
|
imosdell;9zvwKjFJ;Ignacius;Mosdell;Management
|
||||||
|
jwallerbridge;Urz5FoAt;Jeana;Waller-Bridge;Management
|
||||||
|
edressel;cw2Nkpp4;Elroy;Dressel;Production
|
||||||
|
tstrettell;bfFjZ7oz;Thea;Strettell;Production
|
||||||
|
sinsoll;xn0Cu8zg;Solomon;Insoll;Accountant
|
||||||
|
cfeedome;Otm8KrwT;Carri;Feedome;Accountant
|
||||||
|
pchetwind;HM2D6QUl;Padraic;Chetwind;Management
|
||||||
|
sdugo;Mk8FhHgQ;Solly;D'Ugo;Production
|
||||||
|
kmaccostigan;4pyLSjtz;Konstanze;MacCostigan;Accountant
|
||||||
|
rpowlesland;6TqevQaP;Roxane;Powlesland;Management
|
||||||
|
okennealy;GGcTSPT2;Orelle;Kennealy;Production
|
||||||
|
ssoitoux;bLwFZDvY;Sukey;Soitoux;Production
|
||||||
|
nsyce;c3uHw3eB;Nelli;Syce;Production
|
||||||
|
cshillam;Pa3pzjrW;Clarisse;Shillam;Production
|
||||||
|
cgueny;32wmqRXb;Carin;Gueny;Management
|
||||||
|
driepel;bu7RmJUU;Donny;Riepel;Production
|
||||||
|
dralfe;UeEW6VTC;Daniella;Ralfe;Production
|
||||||
|
lclynmans;YpTIYcR3;Lexy;Clynmans;Production
|
||||||
|
gadamthwaite;etWk91hZ;Gardiner;Adamthwaite;Production
|
||||||
|
wlippett;Fyr0beDB;Woodman;Lippett;Production
|
||||||
|
nmunnion;Lr1cekvC;Nadya;Munnion;Production
|
||||||
|
lhabershon;VziwMTYz;Llewellyn;Habershon;Production
|
||||||
|
igreatrex;FahUQNQz;Isaak;Greatrex;Production
|
||||||
|
dfrostdyke;DcnA65DS;Darill;Frostdyke;Production
|
|
Loading…
x
Reference in New Issue
Block a user