Browse Source

Add the user _ospf6d otherwise the newly imported ospf6d daemon will not

start.
ok dlg@
OPENBSD_4_3
norby 16 years ago
parent
commit
b8d21f617d
6 changed files with 13 additions and 4 deletions
  1. +2
    -1
      src/etc/ftpusers
  2. +1
    -0
      src/etc/group
  3. +2
    -1
      src/etc/mail/aliases
  4. +1
    -0
      src/etc/master.passwd
  5. +5
    -1
      src/etc/rc
  6. +2
    -1
      src/etc/rc.conf

+ 2
- 1
src/etc/ftpusers View File

@ -1,4 +1,4 @@
# $OpenBSD: ftpusers,v 1.30 2007/01/31 08:32:16 pyr Exp $
# $OpenBSD: ftpusers,v 1.31 2007/10/08 11:29:58 norby Exp $
#
# list of users disallowed any ftp access.
# read by ftpd(8).
@ -41,3 +41,4 @@ _hostapd
_dvmrpd
_ripd
_hoststated
_ospf6d

+ 1
- 0
src/etc/group View File

@ -54,6 +54,7 @@ _hostapd:*:86:
_dvmrpd:*:87:
_ripd:*:88:
_hoststated:*:89:
_ospf6d:*:90:
dialer:*:117:
nogroup:*:32766:
nobody:*:32767:

+ 2
- 1
src/etc/mail/aliases View File

@ -1,5 +1,5 @@
#
# $OpenBSD: aliases,v 1.21 2007/01/31 08:32:16 pyr Exp $
# $OpenBSD: aliases,v 1.22 2007/10/08 11:29:58 norby Exp $
#
# Aliases in this file will NOT be expanded in the header from
# Mail, but WILL be visible over networks or from /usr/libexec/mail.local.
@ -36,6 +36,7 @@ _kdc: /dev/null
_mopd: /dev/null
_ntp: /dev/null
_ospfd: /dev/null
_ospf6d: /dev/null
_pflogd: /dev/null
_portmap: /dev/null
_ppp: /dev/null


+ 1
- 0
src/etc/master.passwd View File

@ -36,4 +36,5 @@ _hostapd:*:86:86::0:0:HostAP Daemon:/var/empty:/sbin/nologin
_dvmrpd:*:87:87::0:0:DVMRP Daemon:/var/empty:/sbin/nologin
_ripd:*:88:88::0:0:RIP Daemon:/var/empty:/sbin/nologin
_hoststated:*:89:89::0:0:HostState Daemon:/var/empty:/sbin/nologin
_ospf6d:*:90:90::0:0:OSPF6 Daemon:/var/empty:/sbin/nologin
nobody:*:32767:32767::0:0:Unprivileged user:/nonexistent:/sbin/nologin

+ 5
- 1
src/etc/rc View File

@ -1,4 +1,4 @@
# $OpenBSD: rc,v 1.304 2007/04/25 14:12:05 espie Exp $
# $OpenBSD: rc,v 1.305 2007/10/08 11:29:58 norby Exp $
# System startup script run by init on autoboot
# or after single-user.
@ -576,6 +576,10 @@ if [ X"${ospfd_flags}" != X"NO" ]; then
echo -n ' ospfd'; /usr/sbin/ospfd $ospfd_flags
fi
if [ X"${ospf6d_flags}" != X"NO" ]; then
echo -n ' ospf6d'; /usr/sbin/ospf6d $ospf6d_flags
fi
if [ X"${bgpd_flags}" != X"NO" ]; then
echo -n ' bgpd'; /usr/sbin/bgpd $bgpd_flags
fi


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

@ -1,6 +1,6 @@
#!/bin/sh -
#
# $OpenBSD: rc.conf,v 1.124 2007/03/14 20:47:17 ckuethe Exp $
# $OpenBSD: rc.conf,v 1.125 2007/10/08 11:29:58 norby Exp $
# set these to "NO" to turn them off. otherwise, they're used as flags
routed_flags=NO # for normal use: "-q"
@ -9,6 +9,7 @@ mrouted_flags=NO # for normal use: "", if activated
# be sure to enable multicast_router below.
dvmrpd_flags=NO # for normal use: ""
ospfd_flags=NO # for normal use: ""
ospf6d_flags=NO # for normal use: ""
bgpd_flags=NO # for normal use: ""
rarpd_flags=NO # for normal use: "-a"
bootparamd_flags=NO # for normal use: ""


Loading…
Cancel
Save