summaryrefslogtreecommitdiff
path: root/community/inputattach/inputattachctl
diff options
context:
space:
mode:
Diffstat (limited to 'community/inputattach/inputattachctl')
-rwxr-xr-xcommunity/inputattach/inputattachctl14
1 files changed, 0 insertions, 14 deletions
diff --git a/community/inputattach/inputattachctl b/community/inputattach/inputattachctl
deleted file mode 100755
index 05dfa4af5..000000000
--- a/community/inputattach/inputattachctl
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/bash
-
-. /etc/conf.d/inputattach
-
-case "$1" in
- start)
- for i in "${IAPARAMS[@]}"; do
- /usr/bin/inputattach --daemon $i || exit 1
- done
- ;;
- stop)
- killall inputattach || exit 1
- ;;
-esac