diff options
author | 2020-11-08 17:33:49 +0100 | |
---|---|---|
committer | 2020-11-14 12:17:18 +0100 | |
commit | 90da0697ee574b31adfefcd77407d1aeb309c884 (patch) | |
tree | 05943f54514fb95cd608af2af28217b88cfed6ab | |
parent | c5bce3432e7ba04c4a706b20b332aed019c3d35b (diff) | |
download | buildroot-90da0697ee574b31adfefcd77407d1aeb309c884.tar.gz buildroot-90da0697ee574b31adfefcd77407d1aeb309c884.tar.bz2 |
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>
(cherry picked from commit cfc63898f4dbdf7d9eb7c01252ea8ba4c5242229)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/cups-filters/S82cups-browsed | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/cups-filters/S82cups-browsed b/package/cups-filters/S82cups-browsed index 08909c7f98..f17bbe7465 100644 --- a/package/cups-filters/S82cups-browsed +++ b/package/cups-filters/S82cups-browsed @@ -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 |