summaryrefslogtreecommitdiff
path: root/community/lmctl/lmctl.rc.d
diff options
context:
space:
mode:
Diffstat (limited to 'community/lmctl/lmctl.rc.d')
-rw-r--r--community/lmctl/lmctl.rc.d21
1 files changed, 0 insertions, 21 deletions
diff --git a/community/lmctl/lmctl.rc.d b/community/lmctl/lmctl.rc.d
deleted file mode 100644
index e9eaf7de1..000000000
--- a/community/lmctl/lmctl.rc.d
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/bash
-LMCTL_ARGS=
-[ -f /etc/conf.d/lmctl ] && . /etc/conf.d/lmctl
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-case "$1" in
- start)
- stat_busy "Setting up Logitech Mouse"
- /usr/bin/lmctl ${LMCTL_ARGS} &>/dev/null
- if [ $? -eq 0 ] ; then
- stat_fail
- else
- stat_done
- add_daemon lmctl
- fi
- ;;
- *)
- echo "usage: $0 {start}"
-esac