summaryrefslogtreecommitdiff
path: root/community/lmctl/lmctl.rc.d
diff options
context:
space:
mode:
authorJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-09-19 11:59:33 -0500
committerJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-09-19 11:59:33 -0500
commite40531aab32ff93b1f9da20d8a43a440d8dffaca (patch)
tree837260c74cb8eef56e640ee52b2e329e13719276 /community/lmctl/lmctl.rc.d
parent6fab33c9210eaa90d0a0179f7e49c339ea88990f (diff)
parent171f25215eee368fe64f1eed02ce49de090f4b0d (diff)
Merge branch 'master' of gitpar:abslibre-mips64el
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