36 lines
735 B
Bash
Executable File
36 lines
735 B
Bash
Executable File
#!/bin/bash
|
|
|
|
#set -e
|
|
#set -u
|
|
|
|
if [[ $# -ne 1 ]] ; then
|
|
echo "usage : $0 <fichier>"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ ! -r "$1" ]] ; then
|
|
echo "$0 : erreur ouverture ${fich}"
|
|
exit 2
|
|
fi
|
|
|
|
fich=$1
|
|
while read ligne
|
|
do
|
|
echo "$ligne" | grep "^#" >> /dev/null && continue
|
|
[[ -z "$ligne" ]] && continue
|
|
login=$(echo "${ligne}"|cut -d: -f1)
|
|
nom=$(echo "${ligne}"|cut -d: -f2)
|
|
#echo "${login} ${nom}"
|
|
getent passwd "${login}" >> /dev/null
|
|
if [[ $? -ne 0 ]] ; then
|
|
sudo useradd --create-home --home-dir /home/"${login}" --shell /bin/bash --comment "${nom}" "${login}"
|
|
mdp=$(pwgen 6 1)
|
|
#echo "${mdp}"
|
|
echo "${login}:${mdp}"|chpasswd
|
|
echo "${login}:${mdp}" >> "${fich}.pwd"
|
|
else
|
|
echo "$0 : utilisateur ${login} existe deja"
|
|
fi
|
|
done < $fich
|
|
|