Use apm instead of apmconf.

Necessary change to due removal of apmconf which got moved into apm
by green.
This commit is contained in:
Jeroen Ruigrok van der Werven 2000-01-23 10:04:50 +00:00
parent f4da27bf59
commit a49c947e5d
2 changed files with 8 additions and 8 deletions

View File

@ -9,17 +9,17 @@ echo -n 'Initial rc.i386 initialization:'
case ${apm_enable} in
[Yy][Ee][Ss])
echo -n ' apm'
apmconf -e > /dev/null 2>&1
APMCONF_DONE=yes
apm -e > /dev/null 2>&1
APM_DONE=yes
;;
esac
case ${apmd_enable} in
[Yy][Ee][Ss])
case ${APMCONF_DONE} in
case ${APM_DONE} in
'')
echo -n ' apm'
apmconf -e > /dev/null 2>&1
apm -e > /dev/null 2>&1
;;
esac

View File

@ -9,17 +9,17 @@ echo -n 'Initial rc.i386 initialization:'
case ${apm_enable} in
[Yy][Ee][Ss])
echo -n ' apm'
apmconf -e > /dev/null 2>&1
APMCONF_DONE=yes
apm -e > /dev/null 2>&1
APM_DONE=yes
;;
esac
case ${apmd_enable} in
[Yy][Ee][Ss])
case ${APMCONF_DONE} in
case ${APM_DONE} in
'')
echo -n ' apm'
apmconf -e > /dev/null 2>&1
apm -e > /dev/null 2>&1
;;
esac