diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-08-17 22:00:13 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-08-17 22:00:13 +0000 |
commit | 4c5bfb73450280e4641412f505c17551c2ca9a32 (patch) | |
tree | 624dae5ddfc90a7d23aa62e3bdf08a8877b7cfee /etc/rc | |
parent | 54a78f04df78dceb51aab78f8cb1db245ecddc9c (diff) |
altqd startup stuff
Diffstat (limited to 'etc/rc')
-rw-r--r-- | etc/rc | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -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 |