createUsers
This commit is contained in:
parent
b4ca64f4c5
commit
a06e1922c0
@ -5,15 +5,15 @@ fichier=./logins.csv
|
||||
while read ligne #lis tous les lignes
|
||||
do
|
||||
#Créer l'utilisateur avec un répertoire personnel et le shell /bin/bash
|
||||
username=$(echo $ligne | cut -d ";" -f1)
|
||||
username=$(echo $ligne | cut -d "," -f1)
|
||||
useradd -m -s "/bin/bash" $username
|
||||
|
||||
#Définir le groupe de l'utilisateur
|
||||
group=$(echo $ligne | cut -d ";" -f5)
|
||||
group=$(echo $ligne | cut -d "," -f5)
|
||||
usermod -aG $group $username
|
||||
|
||||
#Définir le mot de passe de l'utilisateur
|
||||
passwd=$(echo $ligne | cut -d ";" -f2)
|
||||
passwd=$(echo $ligne | cut -d "," -f2)
|
||||
echo $username:$passwd | chpasswd
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user