summaryrefslogtreecommitdiff
path: root/social/inspircd/inspircd.rcd
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2012-11-15 11:17:39 +0100
committerMichał Masłowski <mtjm@mtjm.eu>2012-11-15 11:17:39 +0100
commit909d51774dfc3c94aeaaeb799daaa546c566a492 (patch)
tree9d19f46f986fe91b8598b617a8dc0a66bf349e7f /social/inspircd/inspircd.rcd
parentdc7c61e8e22503f4f45bc2f57dc0542a8bc1ea30 (diff)
parent2264379d37a6a00a3ecec1fd03c5dd4796078d49 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/esdl/PKGBUILD community/gpg-crypter/PKGBUILD extra/claws-mail-extra-plugins/PKGBUILD extra/maxima/PKGBUILD social/tokyocabinet/PKGBUILD
Diffstat (limited to 'social/inspircd/inspircd.rcd')
-rw-r--r--social/inspircd/inspircd.rcd50
1 files changed, 50 insertions, 0 deletions
diff --git a/social/inspircd/inspircd.rcd b/social/inspircd/inspircd.rcd
new file mode 100644
index 000000000..a041b9be4
--- /dev/null
+++ b/social/inspircd/inspircd.rcd
@@ -0,0 +1,50 @@
+#!/bin/bash
+
+. /etc/rc.conf
+. /etc/rc.d/functions
+
+get_pid() {
+ pidof /usr/sbin/inspircd
+}
+
+case "$1" in
+ start)
+ stat_busy "Starting inspircd"
+ PID=$(get_pid)
+ if [ -z "$PID" ]; then
+ su -s /bin/sh -c '/usr/sbin/inspircd --logfile /var/log/inspircd/startup.log --config /etc/inspircd/inspircd.conf' 'inspircd' > /dev/null
+ if [ $? -gt 0 ]; then
+ stat_fail
+ exit 1
+ else
+ add_daemon inspircd
+ stat_done
+ fi
+ else
+ stat_fail
+ exit 1
+ fi
+ ;;
+
+ stop)
+ stat_busy "Stopping inspircd"
+ PID=$(get_pid)
+ [ ! -z "$PID" ] && kill $PID
+ if [ $? -gt 0 ]; then
+ stat_fail
+ exit 1
+ else
+ rm_daemon inspircd
+ stat_done
+ fi
+ ;;
+
+ restart)
+ $0 stop
+ $0 start
+ ;;
+
+ *)
+ echo "usage: $0 {start|stop|restart}"
+esac
+exit 0