siotp/sio1/sisr1/40-Shell/crsamba7.sh
2022-03-25 09:31:08 +01:00

34 lines
666 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 fichier ${fich}"
exit 2
fi
fich=$1
while read ligne
do
login=$(echo "${ligne}"|cut -d: -f1)
long=$(echo "${ligne}"|cut -d: -f2)
echo "${login} ${long}"
getent passwd "${login}" >> /dev/null
if [[ $? -ne 0 ]] ; then
useradd --create-home --home-dir /home/"${login}" --shell /bin/bash --comment "${long}" "${login}"
passwd=$(pwgen 6 1)
echo "${login}:${passwd}"|chpasswd
echo "${login}:${passwd}" >> "${fich}.pwd"
else
echo "$0 : utilisateur ${login} existant"
fi
done < $fich