NetBSD/etc/rc.d/bootconf.sh

88 lines
1.5 KiB
Bash
Raw Normal View History

2000-03-10 14:53:23 +03:00
#!/bin/sh
#
# $NetBSD: bootconf.sh,v 1.15 2012/12/31 23:21:27 christos Exp $
2000-03-10 14:53:23 +03:00
#
# PROVIDE: bootconf
# REQUIRE: mountcritlocal
# KEYWORD: interactive
2000-03-10 14:53:23 +03:00
2009-09-05 20:24:03 +04:00
$_rc_subr_loaded . /etc/rc.subr
name="bootconf"
start_cmd="bootconf_start"
stop_cmd=":"
2000-03-10 14:53:23 +03:00
bootconf_start()
{
# Refer to newbtconf(8) for more information
#
if [ ! -e /etc/etc.current ]; then
return 0
fi
if [ -h /etc/etc.default ]; then
2004-10-11 19:00:51 +04:00
def=$(ls -ld /etc/etc.default 2>&1)
default="${def##*-> *etc.}"
2000-03-10 14:53:23 +03:00
else
default=current
fi
if [ "$default" = "current" ]; then
2004-10-11 19:00:51 +04:00
def=$(ls -ld /etc/etc.current 2>&1)
default="${def##*-> *etc.}"
fi
2000-03-10 14:53:23 +03:00
spc=""
for i in /etc/etc.*; do
name="${i##/etc/etc.}"
case $name in
current|default|\*)
continue
;;
*)
if [ "$name" = "$default" ]; then
echo -n "${spc}[${name}]"
else
echo -n "${spc}${name}"
fi
spc=" "
;;
esac
2000-03-10 14:53:23 +03:00
done
echo
_DUMMY=/etc/passwd
conf=${_DUMMY}
while [ ! -d /etc/etc.$conf/. ]; do
trap "conf=$default; echo; echo Using default of $default" ALRM
2000-03-10 14:53:23 +03:00
echo -n "Which configuration [$default] ? "
(sleep 30 && kill -ALRM $RC_PID) >/dev/null 2>&1 &
2000-03-10 14:53:23 +03:00
read conf
trap : ALRM
2000-03-10 14:53:23 +03:00
if [ -z $conf ] ; then
conf=$default
fi
if [ ! -d /etc/etc.$conf/. ]; then
conf=${_DUMMY}
fi
done
print_rc_metadata "note:Using configuration \"${conf}\""
case $conf in
current|default)
;;
*)
rm -f /etc/etc.current
ln -s etc.$conf /etc/etc.current
sync
;;
esac
2000-03-10 14:53:23 +03:00
if [ -f /etc/rc.conf ] ; then
. /etc/rc.conf
fi
}
2009-09-05 20:24:03 +04:00
load_rc_config $name
run_rc_command "$1"