Dockerfile / samba.sh fix #251 the group being used was wrong
This commit is contained in:
2
samba.sh
2
samba.sh
@@ -216,7 +216,7 @@ The 'command' (if provided and valid) will be run instead of samba
|
||||
}
|
||||
|
||||
[[ "${USERID:-""}" =~ ^[0-9]+$ ]] && usermod -u $USERID -o smbuser
|
||||
[[ "${GROUPID:-""}" =~ ^[0-9]+$ ]] && groupmod -g $GROUPID -o users
|
||||
[[ "${GROUPID:-""}" =~ ^[0-9]+$ ]] && groupmod -g $GROUPID -o smb
|
||||
|
||||
while getopts ":hc:g:i:nprs:Su:Ww:I:" opt; do
|
||||
case "$opt" in
|
||||
|
||||
Reference in New Issue
Block a user