summaryrefslogtreecommitdiff
path: root/etc/rc
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2001-08-17 22:00:13 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2001-08-17 22:00:13 +0000
commit4c5bfb73450280e4641412f505c17551c2ca9a32 (patch)
tree624dae5ddfc90a7d23aa62e3bdf08a8877b7cfee /etc/rc
parent54a78f04df78dceb51aab78f8cb1db245ecddc9c (diff)
altqd startup stuff
Diffstat (limited to 'etc/rc')
-rw-r--r--etc/rc8
1 files changed, 7 insertions, 1 deletions
diff --git a/etc/rc b/etc/rc
index a7197a3e8cc..639f2cdc10e 100644
--- a/etc/rc
+++ b/etc/rc
@@ -1,4 +1,4 @@
-# $OpenBSD: rc,v 1.178 2001/07/04 06:34:19 mickey Exp $
+# $OpenBSD: rc,v 1.179 2001/08/17 22:00:11 deraadt Exp $
# System startup script run by init on autoboot
# or after single-user.
@@ -411,6 +411,12 @@ if [ "X${mrouted_flags}" != X"NO" ]; then
echo -n ' mrouted'; mrouted $mrouted_flags
fi
+# $altqd_flags is imported from /etc/rc.conf;
+# If $altqd_flags == NO, then altqd isn't run.
+if [ "X${altqd_flags}" != X"NO" ]; then
+ echo -n ' altqd'; altqd $altqd_flags
+fi
+
# $dhcpd_flags is imported from /etc/rc.conf
# If $dhcpd_flags == NO or /etc/dhcpd.conf doesn't exist, then dhcpd isn't run.
if [ "X${dhcpd_flags}" != X"NO" -a -f /etc/dhcpd.conf ]; then