summaryrefslogtreecommitdiffstats
path: root/unstable/prosody/prosody.initd
diff options
context:
space:
mode:
Diffstat (limited to 'unstable/prosody/prosody.initd')
-rw-r--r--unstable/prosody/prosody.initd43
1 files changed, 0 insertions, 43 deletions
diff --git a/unstable/prosody/prosody.initd b/unstable/prosody/prosody.initd
deleted file mode 100644
index 1c88672b..00000000
--- a/unstable/prosody/prosody.initd
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/sbin/runscript
-
-# Sample init.d file for alpine linux.
-
-NAME=prosody
-DAEMON=/usr/bin/$NAME
-
-depend() {
- need net
-}
-
-start() {
- ebegin "Starting ${NAME}"
- /usr/bin/prosodyctl start
-# start-stop-daemon --start --quiet --background \
-# --make-pidfile --pidfile /var/run/${NAME}/${NAME}.pid \
-# --chuid ${USER}:${GROUP} \
-# --exec ${DAEMON} -- ${OPTS}
- eend $?
-}
-
-stop() {
- ebegin "Stopping ${NAME}"
- /usr/bin/prosodyctl stop
-# start-stop-daemon --stop --quiet \
-# --exec ${DAEMON} \
-# --pidfile /var/run/${NAME}/${NAME}.pid \
- eend $?
-}
-
-reload() {
- ebegin "Reloading ${NAME}"
- if ! service_started "${NAME}" ; then
- eend 1 "${NAME} is not started"
- return 1
- fi
- /usr/bin/prosodyctl stop
- /usr/bin/prosodyctl start
-# start-stop-daemon --stop --oknodo --signal HUP \
-# --exec ${DAEMON} --pidfile /var/run/${NAME}/${NAME}.pid
- eend $?
-}
-