aboutsummaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
Diffstat (limited to 'etc')
-rwxr-xr-xetc/psion.SuSE.in11
-rwxr-xr-xetc/psion.in14
2 files changed, 25 insertions, 0 deletions
diff --git a/etc/psion.SuSE.in b/etc/psion.SuSE.in
index c41e9ab..b39846e 100755
--- a/etc/psion.SuSE.in
+++ b/etc/psion.SuSE.in
@@ -13,6 +13,7 @@
. /etc/rc.status
[ -f @prefix@/sbin/ncpd ] || exit 0
+[ -f @prefix@/sbin/plpfuse ] || exit 0
[ -f @prefix@/sbin/plpprintd ] || exit 0
[ -f /etc/sysconfig/psion ] || exit 0
. /etc/sysconfig/psion
@@ -26,6 +27,11 @@ start() {
startproc -f @prefix@/sbin/ncpd $NCPD_ARGS
rc_status -v
fi
+ if test "$START_PLPFUSE" = "yes" ; then
+ echo -n " plpfuse: "
+ startproc -f @prefix@/sbin/plpfuse $PLPFUSE_ARGS
+ rc_status -v
+ fi
if [ "$START_PLPPRINTD" = "yes" ] ; then
echo -n " plpprintd: "
startproc -f @prefix@/sbin/plpprintd $PLPPRINTD_ARGS
@@ -41,6 +47,11 @@ stop() {
killproc -TERM @prefix@/sbin/plpprintd
rc_status -v
fi
+ if [ "$START_PLPFUSE" = "yes" ] ; then
+ echo -n " plpfuse: "
+ fusermount -u /mnt/psion
+ rc_status -v
+ fi
if [ "$START_NCPD" = "yes" ] ; then
echo -n " ncpd: "
killproc -TERM @prefix@/sbin/ncpd
diff --git a/etc/psion.in b/etc/psion.in
index 57a5c57..d19378c 100755
--- a/etc/psion.in
+++ b/etc/psion.in
@@ -9,6 +9,7 @@
. /etc/rc.d/init.d/functions
[ -f @prefix@/sbin/ncpd ] || exit 0
+[ -f @prefix@/sbin/plpfuse ] || exit 0
[ -f @prefix@/sbin/plpprintd ] || exit 0
[ -f /etc/sysconfig/psion ] || exit 0
. /etc/sysconfig/psion
@@ -22,6 +23,14 @@ start() {
RETVAL=$?
echo
fi
+ if [ $RETVAL -eq 0 ] ; then
+ if test "$START_PLPFUSE" = "yes" ; then
+ echo -n " plpfuse: "
+ daemon @prefix@/sbin/plpfuse $PLPFUSE_ARGS
+ RETVAL=$?
+ echo
+ fi
+ fi
if [ $RETVAL -eq 0 ] ; then
if test "$START_PLPPRINTD" = "yes" ; then
echo -n " plpprintd: "
@@ -42,6 +51,11 @@ stop() {
killproc plpprintd
echo
fi
+ if test "$START_PLPFUSE" = "yes" ; then
+ echo -n " plpfuse: "
+ fusermount -u /mnt/psion
+ echo
+ fi
if test "$START_NCPD" = "yes" ; then
echo -n " ncpd: "
killproc ncpd