summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2013-11-28 18:41:11 -0500
committerLuke Shumaker <LukeShu@sbcglobal.net>2013-11-28 18:46:12 -0500
commit8e2d0cbc80fca172580ada6df05e048a420eb68f (patch)
tree791fda0b1d683b4f2097815e08e51475f7329115
parentc885a75d6fa46e2138eb7ee2236516756d2dea1c (diff)
deprecate the init script, only support systemd
-rw-r--r--Makefile5
-rw-r--r--parabolaweb.rc44
2 files changed, 0 insertions, 49 deletions
diff --git a/Makefile b/Makefile
index 1a43b1e..7878d80 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,5 @@
prefix = /usr
sbindir = $(prefix)/sbin
-rcdir = /etc/rc.d
systemddir = $(prefix)/lib/systemd/system
confdir = /etc/conf.d
@@ -10,7 +9,6 @@ install: \
$(DESTDIR)$(sbindir)/parabolaweb-update \
$(DESTDIR)$(sbindir)/parabolaweb-fcgi \
$(DESTDIR)$(confdir)/parabolaweb \
- $(DESTDIR)$(rcdir)/parabolaweb \
$(DESTDIR)$(systemddir)/parabolaweb.service
depends.txt: list-depends depends_static.txt
@@ -19,9 +17,6 @@ depends.txt: list-depends depends_static.txt
$(DESTDIR)$(sbindir)/%: %
install -Dm755 $< $@
-$(DESTDIR)$(rcdir)/%: %.rc
- install -Dm755 $< $@
-
$(DESTDIR)$(systemddir)/%.service: %.service
install -Dm644 $< $@
diff --git a/parabolaweb.rc b/parabolaweb.rc
deleted file mode 100644
index 5e310b0..0000000
--- a/parabolaweb.rc
+++ /dev/null
@@ -1,44 +0,0 @@
-#!/bin/bash
-
-. /etc/rc.conf
-. /etc/rc.d/functions
-
-PIDFILE=/run/web/parabolaweb.pid
-
-case $1 in
-start)
- stat_busy "Starting ParabolaWeb"
- install -dm777 ${PIDFILE%/*}
- if parabolaweb-fcgi pidfile=${PIDFILE}; then
- add_daemon parabolaweb
- stat_done
- exit 0
- else
- stat_fail
- exit 1
- fi
- ;;
-
-stop)
- stat_busy "Stopping ParabolaWeb"
- if [[ -f ${PIDFILE} ]]; then
- pid=$(cat ${PIDFILE})
- kill ${pid}
- rm_daemon parabolaweb
- stat_done
- else
- stat_fail
- exit 1
- fi
- ;;
-
-restart)
- $0 stop
- $0 start
- ;;
-
-*)
- echo "Usage: $0 {start|stop|restart}" >&2
- exit 1
-
-esac