Incorporate changes for version 1.0.2

This commit is contained in:
2026-02-25 13:57:09 -05:00
parent 7e861fbf09
commit b2402566a5
5 changed files with 26 additions and 21 deletions

View File

@@ -1,19 +0,0 @@
#!/bin/bash
SRC=$1
DEST=$2
SRC_GROUPS=`id -Gn ${SRC}`
SRC_SHELL=$(awk -F : -v name=${SRC} '(name == $1) { print $7 }' /etc/passwd)
RAND_PW=`date +%s | sha256sum | base64 | head -c 32 ; echo`
echo "Creating user $DEST"
useradd --shell ${SRC_SHELL} --password ${RAND_PW} --create-home ${DEST}
for grp in ${SRC_GROUPS};do
if [ "$grp" != "$SRC" ]; then
echo "Adding user $DEST to group $grp."
usermod -a -G $grp ${DEST}
fi
done

1
usr/local/bin/cloneuser Symbolic link
View File

@@ -0,0 +1 @@
cloneuser.sh