From 3c01bdd83d34535e3a9b7bfe2bf2a5c4abf59873 Mon Sep 17 00:00:00 2001 From: elam monnot Date: Fri, 25 Mar 2022 09:31:08 +0100 Subject: [PATCH] tqt le shell --- sio1/sisr1/40-Shell/crsamba7.sh | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 sio1/sisr1/40-Shell/crsamba7.sh diff --git a/sio1/sisr1/40-Shell/crsamba7.sh b/sio1/sisr1/40-Shell/crsamba7.sh new file mode 100755 index 0000000..8a38034 --- /dev/null +++ b/sio1/sisr1/40-Shell/crsamba7.sh @@ -0,0 +1,33 @@ +#!/bin/bash + +#set -e +#set -u + + +if [[ $# -ne 1 ]] ; then + echo "usage : $0 " + 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