summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--etc/rc.d/dhcpd7
1 files changed, 6 insertions, 1 deletions
diff --git a/etc/rc.d/dhcpd b/etc/rc.d/dhcpd
index 30a4dcd3e4d..147cc3ba3fb 100644
--- a/etc/rc.d/dhcpd
+++ b/etc/rc.d/dhcpd
@@ -1,11 +1,16 @@
#!/bin/ksh
#
-# $OpenBSD: dhcpd,v 1.3 2018/01/11 19:52:12 rpe Exp $
+# $OpenBSD: dhcpd,v 1.4 2022/10/10 12:07:53 kn Exp $
daemon="/usr/sbin/dhcpd"
. /etc/rc.d/rc.subr
+rc_configtest() {
+ # use rc_exec here since daemon_flags may contain arguments with spaces
+ rc_exec "${daemon} -n ${daemon_flags}"
+}
+
rc_reload=NO
rc_pre() {