configuration files.
OK sthen@ kn@ patrick@
-# $OpenBSD: Makefile,v 1.484 2021/05/01 16:11:07 visa Exp $
+# $OpenBSD: Makefile,v 1.485 2021/11/11 09:38:14 claudio Exp $
.include <bsd.own.mk>
lpd mopd mountd mrouted nfsd npppd nsd ntpd ospf6d ospfd \
pflogd portmap rad radiusd rarpd rbootd relayd resolvd ripd route6d \
sasyncd sensorsd slowcgi slaacd smtpd sndiod snmpd spamd \
- spamlogd sshd statd switchd syslogd tftpd tftpproxy unbound \
+ spamlogd sshd statd syslogd tftpd tftpproxy unbound \
unwind vmd watchdogd wsmoused xenodm ypbind ypldap ypserv
MISETS= base${OSrev}.tgz comp${OSrev}.tgz man${OSrev}.tgz game${OSrev}.tgz
-# $OpenBSD: changelist,v 1.129 2021/09/13 11:49:21 robert Exp $
+# $OpenBSD: changelist,v 1.130 2021/11/11 09:38:14 claudio Exp $
#
# List of files which the security script backs up and checks
# for modifications.
/etc/suid_profile
/etc/sysctl.conf
/etc/syslog.conf
-/etc/switchd.conf
/etc/sysmerge.ignore
/etc/ttys
/etc/unwind.conf
-# $OpenBSD: vm.conf,v 1.10 2020/05/17 17:04:29 deraadt Exp $
+# $OpenBSD: vm.conf,v 1.11 2021/11/11 09:38:14 claudio Exp $
#
# Macros
switch "uplink" {
# This switch will use bridge0, defined by /etc/hostname.bridge0, as
- # the underlying interface. switch(4) is also supported
- #interface switch0
+ # the underlying interface. veb(4) is also supported
interface bridge0
}
-# $OpenBSD: rc,v 1.554 2021/09/01 08:15:53 deraadt Exp $
+# $OpenBSD: rc,v 1.555 2021/11/11 09:38:14 claudio Exp $
# System startup script run by init on autoboot or after single-user.
# Output and error are redirected to console by init, and the console is the
run_upgrade_script sysmerge
echo -n 'starting network daemons:'
-start_daemon ldomd sshd switchd snmpd ldpd ripd ospfd ospf6d bgpd ifstated
+start_daemon ldomd sshd snmpd ldpd ripd ospfd ospf6d bgpd ifstated
start_daemon relayd dhcpd dhcrelay mrouted dvmrpd radiusd eigrpd route6d
start_daemon rad hostapd lpd smtpd slowcgi httpd ftpd
start_daemon ftpproxy ftpproxy6 tftpd tftpproxy identd inetd rarpd bootparamd
-# $OpenBSD: rc.conf,v 1.224 2021/07/16 15:21:41 florian Exp $
+# $OpenBSD: rc.conf,v 1.225 2021/11/11 09:38:14 claudio Exp $
# DO NOT EDIT THIS FILE!!
#
spamd_flags=NO # also see spamd_black below
spamlogd_flags= # use eg. "-i interface" and see spamlogd(8)
sshd_flags=
-switchd_flags=NO
syslogd_flags= # add more flags, e.g. "-u -a /chroot/dev/log"
tftpd_flags=NO
tftpproxy_flags=NO
+++ /dev/null
-#!/bin/ksh
-#
-# $OpenBSD: switchd,v 1.4 2019/01/21 01:41:16 claudio Exp $
-
-daemon="/usr/sbin/switchd"
-
-. /etc/rc.d/rc.subr
-
-# Child will not return a config loading error to the parent.
-rc_pre() {
- # use rcexec here since daemon_flags may contain arguments with spaces
- ${rcexec} "${daemon} -n ${daemon_flags}"
-}
-
-rc_cmd $1