package/cups-filters: fix daemon path for cups service
Fix a typo in service location, the right location is indeed /usr/sbin. Signed-off-by: Angelo Compagnucci <angelo@amarulasolutions.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
9eded3afc3
commit
cfc63898f4
@ -6,7 +6,7 @@ PIDFILE="/var/run/$DAEMON.pid"
|
||||
start() {
|
||||
printf 'Starting %s: ' "$DAEMON"
|
||||
# shellcheck disable=SC2086 # we need the word splitting
|
||||
start-stop-daemon -b -m -S -q -p "$PIDFILE" -x "/sbin/$DAEMON" \
|
||||
start-stop-daemon -b -m -S -q -p "$PIDFILE" -x "/usr/sbin/$DAEMON" \
|
||||
-- -c /etc/cups/cups-browsed.conf
|
||||
status=$?
|
||||
if [ "$status" -eq 0 ]; then
|
||||
|
Loading…
Reference in New Issue
Block a user