net-libs/tox: fix init scripts syntax.

Closes: https://bugs.gentoo.org/628706
Closes: https://bugs.gentoo.org/622344
Closes: https://github.com/gentoo/gentoo/pull/5674
This commit is contained in:
Pavel Frolov
2017-09-09 20:11:51 +03:00
committed by Patrice Clement
parent 8c732cd6a3
commit 0a84eca328
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ start() {
start-stop-daemon --start \
--pidfile "${PIDFILE}" \
--user="${TOX_USER}" --group="${TOX_GROUP}" \
--exec /usr/bin/tox-bootstrapd -- /etc/tox-bootstrapd.conf
--exec /usr/bin/tox-bootstrapd -- --config /etc/tox-bootstrapd.conf
eend $?
}

View File

@@ -8,7 +8,7 @@ Group=tox
RuntimeDirectory=tox-bootstrapd
PIDFile=/run/tox-bootstrapd/tox-bootstrapd.pid
WorkingDirectory=/var/lib/tox-bootstrapd
ExecStart=/usr/bin/tox-bootstrapd /etc/tox-bootstrapd.conf
ExecStart=/usr/bin/tox-bootstrapd --config /etc/tox-bootstrapd.conf
#CapabilityBoundingSet=CAP_NET_BIND_SERVICE
[Install]