From 05547337bc27b0d4863f6b5cc7fe61c3d6bc845b Mon Sep 17 00:00:00 2001 From: maja <> Date: Sun, 23 Nov 1997 11:54:16 +0000 Subject: [PATCH] Add support for mopd. -moj --- src/etc/rc | 9 ++++++++- src/etc/rc.conf | 3 ++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/src/etc/rc b/src/etc/rc index 61e8c624..ea1bfa0b 100644 --- a/src/etc/rc +++ b/src/etc/rc @@ -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 diff --git a/src/etc/rc.conf b/src/etc/rc.conf index 0ac224b2..f14ab438 100644 --- a/src/etc/rc.conf +++ b/src/etc/rc.conf @@ -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