[#]
http://marc.info/?l=openbsd-cvs&m=140778818326225&w=2
openbsd-cvs(obsdave,2) — All
2014-08-12 00:55:13
Module name: src
Changes by: kili@cvs.openbsd.org 2014/08/11 14:16:04
Modified files:
etc/rc.d : rc.subr
Log message:
Let _rc_parse_conf stick to parsing /etc/rc.conf and /etc/rc.conf.local
if it's invoked without parameters. It's simpler than adding adding
/etc/rc.conf and /etc/rc.conf.local parameters whereever _rc_parse_conf
is used (e.g. /etc/rc and /etc/netstart).
While here, replace a
for foo in "$@"; do something; done
by
for foo; do something; done
ok aja@