samba.sh fix NMBD variable derp

This commit is contained in:
David Personette 2016-02-10 09:25:12 -05:00
parent af124fdfd7
commit 96b832124d

View File

@ -139,6 +139,6 @@ elif [[ $# -ge 1 ]]; then
elif ps -ef | egrep -v grep | grep -q smbd; then
echo "Service already running, please restart container to apply changes"
else
[[ $NMBD ]] && ionice -c 3 nmbd -D
[[ ${NMBD:-""} ]] && ionice -c 3 nmbd -D
exec ionice -c 3 smbd -FS
fi