Browse Source

put back recent change (apmd flags) that was accidently removed

OPENBSD_2_4
marc 26 years ago
parent
commit
8c654407ec
2 changed files with 11 additions and 2 deletions
  1. +9
    -1
      src/etc/rc
  2. +2
    -1
      src/etc/rc.conf

+ 9
- 1
src/etc/rc View File

@ -1,4 +1,4 @@
# $OpenBSD: rc,v 1.86 1998/08/19 04:25:46 form Exp $
# $OpenBSD: rc,v 1.87 1998/08/25 18:19:40 marc Exp $
# System startup script run by init on autoboot
# or after single-user.
@ -445,7 +445,15 @@ fi
[ -f /etc/rc.local ] && . /etc/rc.local
echo -n standard daemons:
# $apmd_flags is imported from /etc/rc.conf;
# don't run daemon if $apmd_flags == NO or /usr/sbin/apmd doesn't exist
if [ "X${apmd_flags}" != X"NO" -a -x /usr/sbin/apmd ]; then
echo -n ' apmd'; /usr/sbin/apmd ${apmd_flags}
fi
echo -n ' cron'; cron
echo '.'
date


+ 2
- 1
src/etc/rc.conf View File

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $OpenBSD: rc.conf,v 1.26 1998/08/19 04:25:49 form Exp $
# $OpenBSD: rc.conf,v 1.27 1998/08/25 18:19:41 marc Exp $
# set these to "NO" to turn them off. otherwise, they're used as flags
routed_flags=NO # for 'normal' use: routed_flags="-q"
@ -15,6 +15,7 @@ timed_flags=NO # for 'normal' use: timed_flags=""
photurisd_flags=NO # for 'normal' use: photurisd_flags=""
mopd_flags=NO # for 'normal' use: mopd_flags="-a"
httpd_flags=NO # for 'normal' use: httpd_flags=""
apmd_flags=NO # for 'normal' use: apmd_flags=""
dhcpd_flags=NO # for 'normal' use: dhcpd_flags="-q"
# On some architectures, you must also disable console getty in /etc/ttys


Loading…
Cancel
Save