aboutsummaryrefslogtreecommitdiffstats
path: root/testing/lldpd/lldpd.initd
diff options
context:
space:
mode:
authorFrancesco Colista <fcolista@alpinelinux.org>2017-08-25 07:50:33 +0000
committerFrancesco Colista <fcolista@alpinelinux.org>2017-08-25 07:50:41 +0000
commit13a6f233405d5a40e64140b1fb1deb96071f9cc6 (patch)
tree5c00805d4564f9ec06de76d7eaebf4923e39b48d /testing/lldpd/lldpd.initd
parentc8f1eda1d4c58fe93cc08f1354344814cba98a91 (diff)
downloadaports-13a6f233405d5a40e64140b1fb1deb96071f9cc6.tar.bz2
aports-13a6f233405d5a40e64140b1fb1deb96071f9cc6.tar.xz
testing/lldpd: new aport
Diffstat (limited to 'testing/lldpd/lldpd.initd')
-rw-r--r--testing/lldpd/lldpd.initd19
1 files changed, 19 insertions, 0 deletions
diff --git a/testing/lldpd/lldpd.initd b/testing/lldpd/lldpd.initd
new file mode 100644
index 0000000000..9cebc81cc0
--- /dev/null
+++ b/testing/lldpd/lldpd.initd
@@ -0,0 +1,19 @@
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+name=lldpd
+pidfile=/run/lldpd/lldpd.pid
+command=/usr/sbin/lldpd
+retry="TERM/10/KILL/5"
+command_args="${LLDPD_OPTS}"
+start_stop_daemon_args="--wait 300"
+
+depend() {
+ use net
+}
+
+start_pre() {
+ checkpath --directory /run/lldpd -o lldpd -m 0700
+}
+