gitpush
This commit is contained in:
parent
ab989e8fe6
commit
295c5cfe6f
30
sisr1/tp04-scripts-admin/Users.csv
Normal file
30
sisr1/tp04-scripts-admin/Users.csv
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
Ermengarde,Berthelmot,eberthelmot0@webmd.com,Female,Accountant,
|
||||||
|
Kassi,Bunker,kbunker1@xinhuanet.com,Female,Production,
|
||||||
|
Moises,McCallum,mmccallum2@i2i.jp,Male,Production,
|
||||||
|
Patrizio,Lune,plune3@upenn.edu,Male,Accountant,
|
||||||
|
Blanch,Everix,beverix4@php.net,Female,Accountant,
|
||||||
|
Stafani,Kibbel,skibbel5@marriott.com,Female,Production,
|
||||||
|
Ignacius,Mosdell,imosdell6@cloudflare.com,Male,Management,
|
||||||
|
Jeana,Waller-Bridge,jwallerbridge7@mapy.cz,Female,Management,
|
||||||
|
Elroy,Dressel,edressel8@opera.com,Male,Production,
|
||||||
|
Thea,Strettell,tstrettell9@nature.com,Female,Production,
|
||||||
|
Solomon,Insoll,sinsolla@utexas.edu,Male,Accountant,
|
||||||
|
Carri,Feedome,cfeedomeb@ask.com,Female,Accountant,
|
||||||
|
Padraic,Chetwind,pchetwindc@last.fm,Male,Management,
|
||||||
|
Solly,D'Ugo,sdugod@uiuc.edu,Male,Production,
|
||||||
|
Konstanze,MacCostigan,kmaccostigane@seattletimes.com,Female,Accountant,
|
||||||
|
Roxane,Powlesland,rpowleslandf@pcworld.com,Female,Management,
|
||||||
|
Orelle,Kennealy,okennealyg@arstechnica.com,Female,Production,
|
||||||
|
Sukey,Soitoux,ssoitouxh@shinystat.com,Female,Production,
|
||||||
|
Nelli,Syce,nsycei@blogger.com,Female,Production,
|
||||||
|
Clarisse,Shillam,cshillamj@dailymotion.com,Female,Production,
|
||||||
|
Carin,Gueny,cguenyk@naver.com,Female,Management,
|
||||||
|
Donny,Riepel,driepell@addtoany.com,Male,Production,
|
||||||
|
Daniella,Ralfe,dralfem@wunderground.com,Female,Production,
|
||||||
|
Lexy,Clynmans,lclynmansn@furl.net,Female,Production,
|
||||||
|
Gardiner,Adamthwaite,gadamthwaiteo@spotify.com,Male,Production,
|
||||||
|
Woodman,Lippett,wlippettp@purevolume.com,Male,Production,
|
||||||
|
Nadya,Munnion,nmunnionq@flavors.me,Female,Production,
|
||||||
|
Llewellyn,Habershon,lhabershonr@alibaba.com,Male,Production,
|
||||||
|
Isaak,Greatrex,igreatrexs@seesaa.net,Male,Production,
|
||||||
|
Darill,Frostdyke,dfrostdyket@cafepress.com,Male,Production,
|
|
12
sisr1/tp04-scripts-admin/createGroups.sh
Normal file
12
sisr1/tp04-scripts-admin/createGroups.sh
Normal file
@ -0,0 +1,12 @@
|
|||||||
|
#!bin/bash
|
||||||
|
fichier=./Users.csv
|
||||||
|
|
||||||
|
while read ligne #définit la variable "ligne" comme le contenu de la ligne du fichier en cours de lecture
|
||||||
|
do
|
||||||
|
metier=$(echo $ligne | cut -d "," -f5) # A chaque itération, stocker le métier dans $metier
|
||||||
|
if [[ $(echo $user_line | grep $metier /etc/group) == "" ]] ; then
|
||||||
|
groupadd $metier
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo $metier
|
||||||
|
done < $fichier
|
25
sisr1/tp04-scripts-admin/createLogin.sh
Normal file
25
sisr1/tp04-scripts-admin/createLogin.sh
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
fichier_a_lire=./Users.csv
|
||||||
|
fichier_a_ecrire=./login.csv #creation du fichier alire +stockage dans cette variable
|
||||||
|
rm $fichier_a_ecrire 2> /dev/null #supprimer le fichier avant dexcuter le scripts
|
||||||
|
touch $fichier_a_ecrire
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
while read line #définit la variable "ligne" comme le contenu de la ligne du fichier en cours de lecture
|
||||||
|
do
|
||||||
|
aecrire=" "
|
||||||
|
last_name=$(echo $ligne | cut -d "," -f2)
|
||||||
|
first_name=$(echo $ligne | cut -d "," -f1)
|
||||||
|
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'</dev/urandom| head -c8
|
||||||
|
group=$(echo $ligne | cut -d "," -f5)
|
||||||
|
aecrire="$login;$password;$first_name;$last_name;
|
||||||
|
$group"
|
||||||
|
|
||||||
|
|
||||||
|
echo $aecrire >> $fichier_a_ecrire
|
||||||
|
done < $fichier_a_lire
|
27
sisr1/tp04-scripts-admin/createUser.sh
Normal file
27
sisr1/tp04-scripts-admin/createUser.sh
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
fichier_a_lire=./login.csv
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
while read ligne #définit la variable "ligne" comme le contenu de la ligne du fichier en cours de lecture
|
||||||
|
do
|
||||||
|
username=$(echo $ligne | cut -d ";" -f1)
|
||||||
|
usseradd -m -s "/bin/bash" $username
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
group=$(echo $ligne | cut -d "," -f5)
|
||||||
|
usermod -aG $group $username
|
||||||
|
|
||||||
|
|
||||||
|
passwd=$(echo $ligne | cut -d ";" -f2)
|
||||||
|
|
||||||
|
|
||||||
|
echo $username:$passwd | chpasswd
|
||||||
|
|
||||||
|
|
||||||
|
chown $username:$username /home/$username
|
||||||
|
|
||||||
|
done < $fichier
|
5
sisr1/tp04-scripts-admin/gitpush.sh
Normal file
5
sisr1/tp04-scripts-admin/gitpush.sh
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
message=$1
|
||||||
|
git add
|
||||||
|
git commit -m "$message"
|
||||||
|
git push -u https://elio.lafourcade@gitea.lyc-lecastel.fr/elio.lafourcade/siotp.git
|
0
sisr1/tp04-scripts-admin/login.csv
Normal file
0
sisr1/tp04-scripts-admin/login.csv
Normal file
|
Loading…
x
Reference in New Issue
Block a user