Browse Source

Remove leading/trailing spaces from daemon_flags.

ok schwarze@
OPENBSD_5_0
ajacoutot 13 years ago
parent
commit
825be14a44
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/etc/rc.d/rc.subr

+ 2
- 2
src/etc/rc.d/rc.subr View File

@ -1,4 +1,4 @@
# $OpenBSD: rc.subr,v 1.32 2011/04/05 13:57:57 guenther Exp $
# $OpenBSD: rc.subr,v 1.33 2011/04/06 06:09:28 ajacoutot Exp $
# Default functions and variables used by rc.d(8) scripts.
@ -116,6 +116,6 @@ getcap -f /etc/login.conf ${_name} 1>/dev/null 2>&1 && \
[ -n "${_rcflags}" ] && daemon_flags=${_rcflags}
[ -n "${_rcuser}" ] && daemon_user=${_rcuser}
daemon_flags=$(printf '%s\n' "${daemon_flags}" | tr -s "[:space:]")
daemon_flags=$(printf '%s\n' "${daemon_flags}" | tr -s "[:space:]" | sed 's/^[ \t]*//;s/[ \t]*$//')
pexp="${daemon}${daemon_flags:+ ${daemon_flags}}"
rcexec="su -l -c ${daemon_class} -s /bin/sh ${daemon_user} -c"

Loading…
Cancel
Save