diff --git a/samba.sh b/samba.sh index 99e2db6..1545d7d 100755 --- a/samba.sh +++ b/samba.sh @@ -37,7 +37,7 @@ charmap() { local chars="$1" file=/etc/samba/smb.conf # Arguments: # option) raw option # Return: line added to smb.conf (replaces existing line with same key) -global() { local key="${1%%=*}" value="${1##*=}" file=/etc/samba/smb.conf +global() { local key="${1%% = *}" value="${1##* = }" file=/etc/samba/smb.conf if grep -qE '^\s*'"$key" "$file"; then sed -i 's|^\s*'"$key"'.*| '"$key = $value"'|' "$file" else @@ -253,4 +253,4 @@ elif ps -ef | egrep -v grep | grep -q smbd; then else [[ ${NMBD:-""} ]] && ionice -c 3 nmbd -D exec ionice -c 3 smbd -FS