diff options
Diffstat (limited to 'system/lapsus/rc.lapsus')
-rw-r--r-- | system/lapsus/rc.lapsus | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/system/lapsus/rc.lapsus b/system/lapsus/rc.lapsus deleted file mode 100644 index a9c0c6ded7ac4..0000000000000 --- a/system/lapsus/rc.lapsus +++ /dev/null @@ -1,40 +0,0 @@ -#!/bin/sh -# Start/stop/restart lapsus. -# $Id: rc.lapsus,v 1.0 2007/11/28 -# Author: Heinz Wiesinger <hmwiesinger@gmx.at> -# --------------------------------------------------------------------------- - -# Start lapsus: -lapsus_start() { - if [ -x /usr/sbin/lapsusd ]; then - echo "Starting lapsus daemon: /usr/sbin/lapsusd " - /usr/sbin/lapsusd - fi -} - -# Stop lapsus: -lapsus_stop() { - echo "Stopping lapsus daemon" - killall lapsusd 1> /dev/null 2> /dev/null -} - -# Restart lapsus: -lapsus_restart() { - lapsus_stop - sleep 1 - lapsus_start -} - -case "$1" in -'start') - lapsus_start - ;; -'stop') - lapsus_stop - ;; -'restart') - lapsus_restart - ;; -*) - echo "usage $0 start|stop|restart" -esac |