|
@ -103,12 +103,8 @@ smb_add_share() |
|
|
|
|
|
|
|
|
[ -n "$browseable" ] && printf "\tbrowseable = %s\n" "$browseable" |
|
|
[ -n "$browseable" ] && printf "\tbrowseable = %s\n" "$browseable" |
|
|
[ -n "$read_only" ] && printf "\tread only = %s\n" "$read_only" |
|
|
[ -n "$read_only" ] && printf "\tread only = %s\n" "$read_only" |
|
|
# possible upstream bug? |
|
|
|
|
|
if [ "$read_only" = "no" ]; then |
|
|
|
|
|
printf "\twriteable = yes\n" |
|
|
|
|
|
else |
|
|
|
|
|
[ -n "$writeable" ] && printf "\twriteable = %s\n" "$writeable" |
|
|
|
|
|
fi |
|
|
|
|
|
|
|
|
[ -n "$writeable" ] && printf "\twriteable = %s\n" "$writeable" |
|
|
|
|
|
|
|
|
[ -n "$guest_ok" ] && printf "\tguest ok = %s\n" "$guest_ok" |
|
|
[ -n "$guest_ok" ] && printf "\tguest ok = %s\n" "$guest_ok" |
|
|
[ -n "$inherit_owner" ] && printf "\tinherit owner = %s\n" "$inherit_owner" |
|
|
[ -n "$inherit_owner" ] && printf "\tinherit owner = %s\n" "$inherit_owner" |
|
|
|
|
|
|
|
@ -153,6 +149,15 @@ start_service() |
|
|
exit 1 |
|
|
exit 1 |
|
|
fi |
|
|
fi |
|
|
|
|
|
|
|
|
|
|
|
if [ -e /sys/module/cifsd ]; then |
|
|
|
|
|
if [ -e /sys/class/cifsd-control/kill_server ]; then |
|
|
|
|
|
# upstream "BUG": ensure changes in smb.conf are reflected on a running kernel-server |
|
|
|
|
|
echo hard > /sys/class/cifsd-control/kill_server |
|
|
|
|
|
# we need a extra timeout for the reset |
|
|
|
|
|
sleep 5 |
|
|
|
|
|
fi |
|
|
|
|
|
fi |
|
|
|
|
|
|
|
|
modprobe cifsd 2> /dev/null |
|
|
modprobe cifsd 2> /dev/null |
|
|
if [ ! -e /sys/module/cifsd ]; then |
|
|
if [ ! -e /sys/module/cifsd ]; then |
|
|
logger -t 'cifsd' "modprobe of cifsd module failed, can\'t start cifsd!" |
|
|
logger -t 'cifsd' "modprobe of cifsd module failed, can\'t start cifsd!" |
|
@ -162,6 +167,7 @@ start_service() |
|
|
logger -t 'cifsd' "Starting CIFS/SMB userspace service." |
|
|
logger -t 'cifsd' "Starting CIFS/SMB userspace service." |
|
|
procd_open_instance |
|
|
procd_open_instance |
|
|
procd_set_param command /usr/sbin/cifsd --n |
|
|
procd_set_param command /usr/sbin/cifsd --n |
|
|
|
|
|
procd_set_param file /var/etc/cifs/smb.conf |
|
|
procd_close_instance |
|
|
procd_close_instance |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -169,20 +175,33 @@ stop_service() |
|
|
{ |
|
|
{ |
|
|
logger -t 'cifsd' "Stopping CIFSD userspace service." |
|
|
logger -t 'cifsd' "Stopping CIFSD userspace service." |
|
|
killall cifsd > /dev/null 2>&1 |
|
|
killall cifsd > /dev/null 2>&1 |
|
|
sleep 1 |
|
|
|
|
|
[ -e /sys/class/cifsd-control/kill_server ] && echo hard > /sys/class/cifsd-control/kill_server |
|
|
|
|
|
sleep 2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
[ -e /sys/module/cifsd ] && rmmod cifsd > /dev/null 2>&1 |
|
|
|
|
|
# With open smb connections rmmod is not possible, without waiting for the long 'ipc timeout', so we use 'kill_server'! |
|
|
|
|
|
if [ -e /sys/module/cifsd ]; then |
|
|
|
|
|
logger -t 'cifsd' "triggering kill_server" |
|
|
|
|
|
if [ -e /sys/class/cifsd-control/kill_server ]; then |
|
|
|
|
|
echo hard > /sys/class/cifsd-control/kill_server |
|
|
|
|
|
# we need a extra timeout for the reset |
|
|
|
|
|
sleep 5 |
|
|
|
|
|
fi |
|
|
|
|
|
fi |
|
|
|
|
|
# next try |
|
|
[ -e /sys/module/cifsd ] && rmmod cifsd > /dev/null 2>&1 |
|
|
[ -e /sys/module/cifsd ] && rmmod cifsd > /dev/null 2>&1 |
|
|
# With open smb connections rmmod takes longer |
|
|
|
|
|
|
|
|
# check again |
|
|
if [ -e /sys/module/cifsd ]; then |
|
|
if [ -e /sys/module/cifsd ]; then |
|
|
sleep 5 |
|
|
|
|
|
rmmod cifsd > /dev/null 2>&1 |
|
|
|
|
|
|
|
|
# wait more... |
|
|
|
|
|
sleep 3 |
|
|
|
|
|
fi |
|
|
|
|
|
# last try |
|
|
|
|
|
[ -e /sys/module/cifsd ] && rmmod cifsd > /dev/null 2>&1 |
|
|
|
|
|
|
|
|
|
|
|
if [ -e /sys/module/cifsd ]; then |
|
|
|
|
|
logger -t 'cifsd' "module still loaded after 8s timeout" |
|
|
fi |
|
|
fi |
|
|
[ -f /tmp/cifsd.lock ] && rm /tmp/cifsd.lock |
|
|
[ -f /tmp/cifsd.lock ] && rm /tmp/cifsd.lock |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
reload_service() { |
|
|
|
|
|
stop_service "$@" |
|
|
|
|
|
sleep 1 |
|
|
|
|
|
start_service "$@" |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
# reload_service() { |
|
|
|
|
|
# restart "$@" |
|
|
|
|
|
# } |