From 6e92342f07134ea7521383ada23ce1a3957c0487 Mon Sep 17 00:00:00 2001 From: David Personette Date: Mon, 25 Dec 2017 08:02:26 -0500 Subject: [PATCH] samba.sh / README.md - fix #99 add share comments and fix #100 variables for all flags --- README.md | 10 +++++++++- samba.sh | 15 ++++++++++++--- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c137a81..c5dc68f 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,8 @@ OR set local storage: -p Set ownership and permissions on the shares -r Disable recycle bin for shares -S Disable SMB2 minimum version - -s "[;browse;readonly;guest;users;admins;wl]" Config a share + -s "[;browse;readonly;guest;users;admins;writelist;comment]" + Configure a share required arg: ";" is how it's called for clients path to share @@ -51,6 +52,7 @@ OR set local storage: [users] allowed default:'all' or list of allowed users [admins] allowed default:'none' or list of admin users [writelist] list of users that can write to a RO share + [comment] description of share -u "[;ID;group]" Add a user required arg: ";" for user @@ -67,9 +69,15 @@ OR set local storage: ENVIRONMENT VARIABLES (only available with `docker run`) * `CHARMAP` - As above, configure character mapping + * `GLOBAL` - As above, configure a global option + * `IMPORT` - As above, import a smbpassword file * `NMBD` - As above, enable nmbd + * `PERMISSIONS` - As above, set file permissions on all shares + * `RECYCLE` - As above, disable recycle bin + * `SHARE` - As above, setup a share * `SMB` - As above, disable SMB2 minimum version * `TZ` - Set a timezone, IE `EST5EDT` + * `USER` - As above, setup a user * `WIDELINKS` - As above, allow access wide symbolic links * `WORKGROUP` - As above, set workgroup * `USERID` - Set the UID for the samba server diff --git a/samba.sh b/samba.sh index e9bd1e8..d460925 100755 --- a/samba.sh +++ b/samba.sh @@ -86,10 +86,11 @@ recycle() { local file=/etc/samba/smb.conf # users) list of allowed users # admins) list of admin users # writelist) list of users that can write to a RO share +# comment) description of share # Return: result share() { local share="$1" path="$2" browsable=${3:-yes} ro=${4:-yes} \ guest=${5:-yes} users=${6:-""} admins=${7:-""} \ - writelist=${8:-""} file=/etc/samba/smb.conf + writelist=${8:-""} comment=${9:-""} file=/etc/samba/smb.conf sed -i "/\\[$share\\]/,/^\$/d" $file echo "[$share]" >>$file echo " path = $path" >>$file @@ -106,6 +107,8 @@ share() { local share="$1" path="$2" browsable=${3:-yes} ro=${4:-yes} \ echo " admin users = $(tr ',' ' ' <<< $admins)" >>$file [[ ${writelist:-""} && ! ${writelist:-""} =~ none ]] && echo " write list = $(tr ',' ' ' <<< $writelist)" >>$file + [[ ${comment:-""} && ! ${comment:-""} =~ none ]] && + echo " comment = $(tr ',' ' ' <<< $comment)" >>$file echo "" >>$file } @@ -166,7 +169,8 @@ Options (fields in '[]' are optional, '<>' are required): -p Set ownership and permissions on the shares -r Disable recycle bin for shares -S Disable SMB2 minimum version - -s \"[;browse;readonly;guest;users;admins;wl]\" Config a share + -s \"[;browse;readonly;guest;users;admins;writelist;comment]\" + Configure a share required arg: \";\" is how it's called for clients path to share @@ -177,6 +181,7 @@ Options (fields in '[]' are optional, '<>' are required): [users] allowed default:'all' or list of allowed users [admins] allowed default:'none' or list of admin users [writelist] list of users that can write to a RO share + [comment] description of share -u \"[;ID;group]\" Add a user required arg: \";\" for user @@ -207,7 +212,7 @@ while getopts ":hc:g:i:nprs:Su:Ww:" opt; do r) recycle ;; s) eval share $(sed 's/^/"/; s/$/"/; s/;/" "/g' <<< $OPTARG) ;; S) smb ;; - u) eval user $(sed 's|;| |g' <<< $OPTARG) ;; + u) eval user $(sed 's/;/ /g' <<< $OPTARG) ;; w) workgroup "$OPTARG" ;; W) widelinks ;; "?") echo "Unknown option: -$OPTARG"; usage 1 ;; @@ -217,9 +222,13 @@ done shift $(( OPTIND - 1 )) [[ "${CHARMAP:-""}" ]] && charmap "$CHARMAP" +[[ "${GLOBAL:-""}" ]] && global "$GLOBAL" +[[ "${IMPORT:-""}" ]] && import "$IMPORT" [[ "${PERMISSIONS:-""}" ]] && perms [[ "${RECYCLE:-""}" ]] && recycle +[[ "${SHARE:-""}" ]] && share $(sed 's/^/"/; s/$/"/; s/;/" "/g' <<< $SHARE) [[ "${SMB:-""}" ]] && smb +[[ "${USER:-""}" ]] && user $(sed 's/;/ /g' <<< $USER) [[ "${WORKGROUP:-""}" ]] && workgroup "$WORKGROUP" [[ "${WIDELINKS:-""}" ]] && widelinks