diff options
Diffstat (limited to 'recipes/p910nd/files/p910nd.init')
-rwxr-xr-x | recipes/p910nd/files/p910nd.init | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/recipes/p910nd/files/p910nd.init b/recipes/p910nd/files/p910nd.init new file mode 100755 index 0000000000..e5693e911b --- /dev/null +++ b/recipes/p910nd/files/p910nd.init @@ -0,0 +1,38 @@ +#! /bin/sh +# +# This is an init script for openembedded +# Copy it to /etc/init.d/p910nd and type +# > update-rc.d p910nd defaults 60 +# +# + + +test -f /usr/sbin/p910nd || exit 0 + +test -d /var/spool/p910nd || mkdir -p /var/spool/p910nd + +case "$1" in + start) + echo -n "Starting p910nd printer daemon: p910nd" + /usr/sbin/p910nd -b -f /dev/usb/lp0 0 + echo "." + ;; + stop) + echo -n "Stopping p910nd printer daemon: p910nd" + start-stop-daemon --stop --quiet --exec /usr/sbin/p9100d + echo "." + ;; + restart) + echo -n "Stopping p910nd printer daemon: p910nd" + start-stop-daemon --stop --quiet --exec /usr/sbin/p9100d + sleep 2 + echo -n " ... Starting p910nd printer daemon: p910nd " + /usr/sbin/p910nd -b -f /dev/usb/lp0 0 + echo "." + ;; + *) + echo "Usage: /etc/init.d/p910nd {start|stop|restart}" + exit 1 +esac + +exit 0 |