sed(1): Use /i instead of /I

the i modifier was added in r259132 since POSIX recently agreed to add
	it. Switch uses of /I to /i.
This commit is contained in:
Eitan Adler 2013-12-09 22:56:19 +00:00
parent 316032ad20
commit 5e78a56e51

View File

@ -29,7 +29,7 @@
: ${DIALOG_OK=0}
if [ -f $BSDINSTALL_TMPETC/rc.conf.services ]; then
eval `sed -e s/YES/on/I -e s/NO/off/I $BSDINSTALL_TMPETC/rc.conf.services`
eval `sed -e s/YES/on/i -e s/NO/off/i $BSDINSTALL_TMPETC/rc.conf.services`
else
# Default service states. Everything is off if not enabled.
sshd_enable="on"