From 50bc440d983cbdaa43f90d066a33dea0f65a705f Mon Sep 17 00:00:00 2001 From: ajacoutot <> Date: Sun, 1 Sep 2013 15:02:35 +0000 Subject: [PATCH] Properly pass daemon_flags to amd(8). ok dcoppa@ sthen@ --- src/etc/rc.d/amd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/rc.d/amd b/src/etc/rc.d/amd index 37c97c52..b6b82230 100644 --- a/src/etc/rc.d/amd +++ b/src/etc/rc.d/amd @@ -1,6 +1,6 @@ #!/bin/sh # -# $OpenBSD: amd,v 1.5 2012/11/21 08:07:33 ajacoutot Exp $ +# $OpenBSD: amd,v 1.6 2013/09/01 15:02:35 ajacoutot Exp $ daemon="/usr/sbin/amd" @@ -11,7 +11,7 @@ rc_stop=NO rc_pre() { [ -e ${amd_master} ] || return 1 - daemon_flags=$(print -rn -- $(< ${amd_master})) + daemon_flags="${daemon_flags} $(print -rn -- $(< ${amd_master}))" } rc_start() {