Browse Source

Replace nmeattach (which will be removed) with ldattach.

OPENBSD_4_4
mbalmer 16 years ago
parent
commit
c2416ee17a
2 changed files with 5 additions and 5 deletions
  1. +3
    -3
      src/etc/rc
  2. +2
    -2
      src/etc/rc.conf

+ 3
- 3
src/etc/rc View File

@ -1,4 +1,4 @@
# $OpenBSD: rc,v 1.315 2008/06/08 03:03:37 jdixon Exp $
# $OpenBSD: rc,v 1.316 2008/06/09 22:21:49 mbalmer Exp $
# System startup script run by init on autoboot
# or after single-user.
@ -415,8 +415,8 @@ if [ X"${timed_flags}" != X"NO" ]; then
echo -n ' timed'; timed $timed_flags
fi
if [ X"${nmeaattach_flags}" != X"NO" -a -n "${nmeaattach_flags}" ]; then
echo -n ' nmeaattach'; nmeaattach ${nmeaattach_flags}
if [ X"${ldattach_flags}" != X"NO" -a -n "${ldattach_flags}" ]; then
echo -n ' ldattach'; ldattach ${ldattach_flags}
fi
if [ X"${ntpd_flags}" != X"NO" ]; then


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

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $OpenBSD: rc.conf,v 1.129 2008/05/07 11:58:14 claudio Exp $
# $OpenBSD: rc.conf,v 1.130 2008/06/09 22:21:49 mbalmer Exp $
# set these to "NO" to turn them off. otherwise, they're used as flags
ripd_flags=NO # for normal use: ""
@ -17,7 +17,7 @@ sshd_flags="" # for normal use: ""
named_flags=NO # for normal use: ""
rdate_flags=NO # for normal use: [RFC868-host] or [-n RFC2030-host]
timed_flags=NO # for normal use: ""
nmeaattach_flags=NO # for normal use: "[options] cua-device"
ldattach_flags=NO # for normal use: "[options] linedisc cua-device"
ntpd_flags=NO # for normal use: ""
isakmpd_flags=NO # for normal use: ""
sasyncd_flags=NO # for normal use: ""


Loading…
Cancel
Save