summaryrefslogtreecommitdiff
path: root/pcr/openrc-base/inetutils.initd
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-03-23 11:58:01 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-03-23 11:58:01 -0300
commit1988c77fae4e3c3e762d1d361249e21622f548cf (patch)
tree5c0b658d83f23533b7c43758468b5282cd1ead68 /pcr/openrc-base/inetutils.initd
parent5333f9d3db9e5e7a174d4028107246338c1094eb (diff)
parent63dda12e2f3cdba9df1605f8ca845bf3ffcf416f (diff)
Merge branch 'master' of ssh://projects.parabola.nu/~git/abslibre
Diffstat (limited to 'pcr/openrc-base/inetutils.initd')
-rw-r--r--pcr/openrc-base/inetutils.initd27
1 files changed, 27 insertions, 0 deletions
diff --git a/pcr/openrc-base/inetutils.initd b/pcr/openrc-base/inetutils.initd
new file mode 100644
index 000000000..a53184c4c
--- /dev/null
+++ b/pcr/openrc-base/inetutils.initd
@@ -0,0 +1,27 @@
+#!/usr/bin/openrc-run
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+FTPD_BINARY="/usr/bin/ftpd"
+FTPD_PIDFILE="/run/ftpd.pid"
+
+depend() {
+ use logger dns
+ need net
+}
+
+start() {
+ ebegin "Starting ${SVCNAME}"
+ start-stop-daemon --start --exec "${FTPD_BINARY}" \
+ --pidfile "${FTPD_PIDFILE}" \
+ -- ${FTPD_ARGS}
+ eend $?
+}
+
+stop() {
+ ebegin "Stopping ${SVCNAME}"
+ start-stop-daemon --stop --exec "${FTPD_BINARY}" \
+ --pidfile "${FTPD_PIDFILE}" --quiet
+ eend $?
+}
+