summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorajacoutot <ajacoutot@openbsd.org>2014-12-29 11:17:43 +0000
committerajacoutot <ajacoutot@openbsd.org>2014-12-29 11:17:43 +0000
commitd13a3e6b7f96cf2fa337ca840235d8c12ea6b915 (patch)
tree534deaed1c44f7421c41a61739db244b50e7da6b
parentpexp is not needed; ok sthen@ (diff)
downloadwireguard-openbsd-d13a3e6b7f96cf2fa337ca840235d8c12ea6b915.tar.xz
wireguard-openbsd-d13a3e6b7f96cf2fa337ca840235d8c12ea6b915.zip
Add line continuation to be consistent with rc_pre(); ok sthen@
-rw-r--r--etc/rc.d/unbound4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/rc.d/unbound b/etc/rc.d/unbound
index 8f00694440e..c591b0b1b45 100644
--- a/etc/rc.d/unbound
+++ b/etc/rc.d/unbound
@@ -1,6 +1,6 @@
#!/bin/sh
#
-# $OpenBSD: unbound,v 1.1 2014/03/15 00:34:18 sthen Exp $
+# $OpenBSD: unbound,v 1.2 2014/12/29 11:17:43 ajacoutot Exp $
daemon="/usr/sbin/unbound"
daemon_flags="-c /var/unbound/etc/unbound.conf"
@@ -25,7 +25,7 @@ rc_pre() {
}
rc_start() {
- /usr/sbin/unbound-checkconf > /dev/null &&
+ /usr/sbin/unbound-checkconf > /dev/null && \
${rcexec} "unbound ${daemon_flags}"
}