diff options
author | Antoine Jacoutot <ajacoutot@cvs.openbsd.org> | 2011-09-19 20:42:25 +0000 |
---|---|---|
committer | Antoine Jacoutot <ajacoutot@cvs.openbsd.org> | 2011-09-19 20:42:25 +0000 |
commit | a86cb4f731f7887e6ec8d9213d96355edce9f31c (patch) | |
tree | 33cdfa6af7ae78e5b66dd43846f801251f620b37 /etc/rc.d/rarpd | |
parent | 6a83587c67ca647c29002c03131a08a365d5d56b (diff) |
Set defaults daemon_flags (same as advertised in rc.conf.local(5) so
that we can use these scripts right away with /etc/rc.d/XXX -f without
having to manually set _flags.
ok robert@
Diffstat (limited to 'etc/rc.d/rarpd')
-rw-r--r-- | etc/rc.d/rarpd | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/rc.d/rarpd b/etc/rc.d/rarpd index e63053b211e..705eebfa2f8 100644 --- a/etc/rc.d/rarpd +++ b/etc/rc.d/rarpd @@ -1,8 +1,9 @@ #!/bin/sh # -# $OpenBSD: rarpd,v 1.2 2011/07/08 02:15:34 robert Exp $ +# $OpenBSD: rarpd,v 1.3 2011/09/19 20:42:24 ajacoutot Exp $ daemon="/usr/sbin/rarpd" +daemon_flags="-a" . /etc/rc.d/rc.subr |