Browse Source

Add support for mopd. -moj

OPENBSD_2_3
maja 26 years ago
parent
commit
05547337bc
2 changed files with 10 additions and 2 deletions
  1. +8
    -1
      src/etc/rc
  2. +2
    -1
      src/etc/rc.conf

+ 8
- 1
src/etc/rc View File

@ -1,4 +1,4 @@
# $OpenBSD: rc,v 1.55 1997/11/19 23:44:21 deraadt Exp $
# $OpenBSD: rc,v 1.56 1997/11/23 11:54:16 maja Exp $
# System startup script run by init on autoboot
# or after single-user.
@ -352,6 +352,13 @@ if [ "X${rbootd_flags}" != X"NO" -a -r /etc/rbootd.conf ]; then
echo -n ' rbootd'; rbootd ${rbootd_flags}
fi
# $mopd_flags is imported from /etc/rc.conf;
# If $mopd_flags == NO or /tftpboot/mop doesn't exist, then
# mopd isn't run.
if [ "X${mopd_flags}" != X"NO" -a -d /tftpboot/mop ]; then
echo -n ' mopd'; mopd ${mopd_flags}
fi
if [ -x /usr/sbin/screenblank ]; then
echo -n ' screenblank'; /usr/sbin/screenblank
fi


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

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $OpenBSD: rc.conf,v 1.2 1997/09/23 21:20:47 mickey Exp $
# $OpenBSD: rc.conf,v 1.3 1997/11/23 11:54:16 maja Exp $
# set these to "NO" to turn them off. otherwise, they're used as flags
routed_flags=NO # for 'normal' use: routed_flags=-q
@ -12,6 +12,7 @@ sendmail_flags=NO # for 'normal' use: sendmail_flags="-bd -q30m"
named_flags=NO # for 'normal' use: named_flags=""
timed_flags=NO # for 'normal' use: timed_flags=""
photurisd_flags="" # for 'normal' use: photurisd_flags=""
mopd_flags=NO # for 'normal' use: mopd_flags="-a"
# set the following to "YES" to turn them on
rwhod=NO


Loading…
Cancel
Save