blob: b7e61f1399f980cc7d654c64ccd7a68fc1d09780 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
description "Samba Auto-reload Integration"
author "James Page <james.page@ubuntu.com>"
start on started cups
task
script
if status smbd | grep -q "running"; then
reload smbd
fi
end script
|