diff options
author | 2007-10-08 11:29:58 +0000 | |
---|---|---|
committer | 2007-10-08 11:29:58 +0000 | |
commit | f224b7cf996a9f180381616586aabd9d9bc8869c (patch) | |
tree | 0e2986e3aab6ca41563d3a87ac2de89b17715bca | |
parent | Welcome ospf6d (diff) | |
download | wireguard-openbsd-f224b7cf996a9f180381616586aabd9d9bc8869c.tar.xz wireguard-openbsd-f224b7cf996a9f180381616586aabd9d9bc8869c.zip |
Add the user _ospf6d otherwise the newly imported ospf6d daemon will not
start.
ok dlg@
-rw-r--r-- | etc/ftpusers | 3 | ||||
-rw-r--r-- | etc/group | 1 | ||||
-rw-r--r-- | etc/mail/aliases | 3 | ||||
-rw-r--r-- | etc/master.passwd | 1 | ||||
-rw-r--r-- | etc/rc | 6 | ||||
-rw-r--r-- | etc/rc.conf | 3 |
6 files changed, 13 insertions, 4 deletions
diff --git a/etc/ftpusers b/etc/ftpusers index 3fe61a9a575..d719371b16d 100644 --- a/etc/ftpusers +++ b/etc/ftpusers @@ -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 diff --git a/etc/group b/etc/group index 7a640eadb69..0c8b4233058 100644 --- a/etc/group +++ b/etc/group @@ -54,6 +54,7 @@ _hostapd:*:86: _dvmrpd:*:87: _ripd:*:88: _hoststated:*:89: +_ospf6d:*:90: dialer:*:117: nogroup:*:32766: nobody:*:32767: diff --git a/etc/mail/aliases b/etc/mail/aliases index 864101c5787..e83831c939d 100644 --- a/etc/mail/aliases +++ b/etc/mail/aliases @@ -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 diff --git a/etc/master.passwd b/etc/master.passwd index 89afebd5658..7be8d5b4358 100644 --- a/etc/master.passwd +++ b/etc/master.passwd @@ -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 @@ -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 diff --git a/etc/rc.conf b/etc/rc.conf index fdc16a54466..958315a1a9c 100644 --- a/etc/rc.conf +++ b/etc/rc.conf @@ -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: "" |