summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Jacoutot <ajacoutot@cvs.openbsd.org>2011-12-21 09:26:30 +0000
committerAntoine Jacoutot <ajacoutot@cvs.openbsd.org>2011-12-21 09:26:30 +0000
commit9715807cbb5a628a22512ece28a138ea02569ea0 (patch)
tree637fbde922acafe3659f42f768ea76a2459ff4c2
parent5211a46a412e049874e314958d8dfff695fa9be3 (diff)
Move mandatory flags from daemon_flags to daemon.
ok sthen@
-rw-r--r--etc/rc.d/ftpd5
-rw-r--r--etc/rc.d/identd6
-rw-r--r--etc/rc.d/popa3d5
3 files changed, 7 insertions, 9 deletions
diff --git a/etc/rc.d/ftpd b/etc/rc.d/ftpd
index d998345b155..449bc6d9d5b 100644
--- a/etc/rc.d/ftpd
+++ b/etc/rc.d/ftpd
@@ -1,9 +1,8 @@
#!/bin/sh
#
-# $OpenBSD: ftpd,v 1.2 2011/09/19 20:42:24 ajacoutot Exp $
+# $OpenBSD: ftpd,v 1.3 2011/12/21 09:26:29 ajacoutot Exp $
-daemon="/usr/libexec/ftpd"
-daemon_flags="-D"
+daemon="/usr/libexec/ftpd -D"
. /etc/rc.d/rc.subr
diff --git a/etc/rc.d/identd b/etc/rc.d/identd
index 83ac229c615..e9c4305ebfe 100644
--- a/etc/rc.d/identd
+++ b/etc/rc.d/identd
@@ -1,9 +1,9 @@
#!/bin/sh
#
-# $OpenBSD: identd,v 1.2 2011/09/19 20:42:24 ajacoutot Exp $
+# $OpenBSD: identd,v 1.3 2011/12/21 09:26:29 ajacoutot Exp $
-daemon="/usr/libexec/identd"
-daemon_flags="-b -elo"
+daemon="/usr/libexec/identd -b"
+daemon_flags="-elo"
. /etc/rc.d/rc.subr
diff --git a/etc/rc.d/popa3d b/etc/rc.d/popa3d
index 86cf0f825da..e86ceee99dd 100644
--- a/etc/rc.d/popa3d
+++ b/etc/rc.d/popa3d
@@ -1,9 +1,8 @@
#!/bin/sh
#
-# $OpenBSD: popa3d,v 1.2 2011/09/19 20:42:24 ajacoutot Exp $
+# $OpenBSD: popa3d,v 1.3 2011/12/21 09:26:29 ajacoutot Exp $
-daemon="/usr/sbin/popa3d"
-daemon_flags="-D"
+daemon="/usr/sbin/popa3d -D"
. /etc/rc.d/rc.subr