summaryrefslogtreecommitdiff
path: root/sysutils/upsmon/files/upsmon.sh
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/upsmon/files/upsmon.sh')
-rw-r--r--sysutils/upsmon/files/upsmon.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/sysutils/upsmon/files/upsmon.sh b/sysutils/upsmon/files/upsmon.sh
deleted file mode 100644
index 31031407a2c0..000000000000
--- a/sysutils/upsmon/files/upsmon.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/sh
-
-case $1 in
-start)
- # see !!PREFIX!!/share/doc/upsmon/INSTALL for command line option details
-
- if [ -x !!PREFIX!!/sbin/upsmond ]; then
- !!PREFIX!!/sbin/upsmond -p /dev/cuaa0 2>&1 > /dev/null && echo -n ' upsmond'
- fi
- ;;
-stop)
- killall upsmond && echo -n ' upsmond'
- ;;
-*)
- echo "Usage: `basename $0` {start|stop}" >&2
- exit 64
- ;;
-esac
-
-exit 0