You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
6 lines
204 B
6 lines
204 B
#!/bin/sh
|
|
if [[ -z $(getent passwd "$1") ]]; then
|
|
adduser "$1" --disabled-password --gecos "" --no-create-home --shell /usr/sbin/nologin
|
|
usermod -a -G sambashare "$1"
|
|
fi
|
|
smbpasswd -a "$1"
|
|
|