CVS commit: src/etc/defaults

2024-05-03 Thread Takeshi Nakayama
Module Name:src
Committed By:   nakayama
Date:   Fri May  3 20:48:59 UTC 2024

Modified Files:
src/etc/defaults: npf.boot.conf

Log Message:
Allow DHCPv6 so that dhcpcd(8) does not complain at boot when using
ia_pd option.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/etc/defaults/npf.boot.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/npf.boot.conf
diff -u src/etc/defaults/npf.boot.conf:1.3 src/etc/defaults/npf.boot.conf:1.4
--- src/etc/defaults/npf.boot.conf:1.3	Sun Aug  9 23:43:58 2020
+++ src/etc/defaults/npf.boot.conf	Fri May  3 20:48:58 2024
@@ -1,4 +1,4 @@
-#	$NetBSD: npf.boot.conf,v 1.3 2020/08/09 23:43:58 gutteridge Exp $
+#	$NetBSD: npf.boot.conf,v 1.4 2024/05/03 20:48:58 nakayama Exp $
 #
 # /etc/defaults/npf.boot.conf --
 #	initial configuration for npf(7)
@@ -28,6 +28,8 @@ pass stateful out proto icmp icmp-type e
 # Allow DHCP
 pass out family inet4 proto udp from any port bootpc to any port bootps
 pass in family inet4 proto udp from any port bootps to any port bootpc
+pass out family inet6 proto udp from any port "dhcpv6-client" to any port "dhcpv6-server"
+pass in family inet6 proto udp from any port "dhcpv6-server" to any port "dhcpv6-client"
 
 # Allow IPv6 router/neighbor solicitation and advertisement.
 pass out  family inet6 proto ipv6-icmp icmp-type rtsol all



CVS commit: src/etc/defaults

2024-05-03 Thread Takeshi Nakayama
Module Name:src
Committed By:   nakayama
Date:   Fri May  3 20:48:59 UTC 2024

Modified Files:
src/etc/defaults: npf.boot.conf

Log Message:
Allow DHCPv6 so that dhcpcd(8) does not complain at boot when using
ia_pd option.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/etc/defaults/npf.boot.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2023-09-26 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Wed Sep 27 01:27:32 UTC 2023

Modified Files:
src/etc/defaults: rc.conf

Log Message:
/etc/rc.d/certctl_init: Default off.

Otherwise in systems without certctl_init=YES, such as systems
installed with sysinst(8) where it's unnecessary because the rehash
has already happened at install time, you'll get spurious warnings.

PR install/57629

XXX pullup-10


To generate a diff of this commit:
cvs rdiff -u -r1.165 -r1.166 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.165 src/etc/defaults/rc.conf:1.166
--- src/etc/defaults/rc.conf:1.165	Sun Jul  2 12:39:05 2023
+++ src/etc/defaults/rc.conf	Wed Sep 27 01:27:32 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.165 2023/07/02 12:39:05 nia Exp $
+#	$NetBSD: rc.conf,v 1.166 2023/09/27 01:27:32 riastradh Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -144,6 +144,7 @@ sysdb=YES	# build system databases
 rndctl=NO		rndctl_flags=""		# configure rndctl(8)
 gpio=NO		# configure GPIO devices
 modules=YES	# process /etc/modules.conf
+certctl_init=NO	# rehash /etc/openssl/certs
 
 # cope with other OSes using the real time clock at localtime on this
 # machine (by adjusting kern.rtc_offset at boot)



CVS commit: src/etc/defaults

2023-09-26 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Wed Sep 27 01:27:32 UTC 2023

Modified Files:
src/etc/defaults: rc.conf

Log Message:
/etc/rc.d/certctl_init: Default off.

Otherwise in systems without certctl_init=YES, such as systems
installed with sysinst(8) where it's unnecessary because the rehash
has already happened at install time, you'll get spurious warnings.

PR install/57629

XXX pullup-10


To generate a diff of this commit:
cvs rdiff -u -r1.165 -r1.166 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2023-07-02 Thread Nia Alarie
Module Name:src
Committed By:   nia
Date:   Sun Jul  2 12:39:05 UTC 2023

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Fix typo in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.164 -r1.165 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.164 src/etc/defaults/rc.conf:1.165
--- src/etc/defaults/rc.conf:1.164	Fri Jun 30 21:44:09 2023
+++ src/etc/defaults/rc.conf	Sun Jul  2 12:39:05 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.164 2023/06/30 21:44:09 riastradh Exp $
+#	$NetBSD: rc.conf,v 1.165 2023/07/02 12:39:05 nia Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -389,7 +389,7 @@ random_seed=YES
 
 # Set to `check' to abort multi-user boot if not enough entropy, or
 # `wait' to wait until enough entropy, or `' (empty) to boot without
-# waitingor checking.
+# waiting or checking.
 #
 entropy="wait"
 



CVS commit: src/etc/defaults

2023-07-02 Thread Nia Alarie
Module Name:src
Committed By:   nia
Date:   Sun Jul  2 12:39:05 UTC 2023

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Fix typo in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.164 -r1.165 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2020-08-09 Thread David H. Gutteridge
Module Name:src
Committed By:   gutteridge
Date:   Sun Aug  9 23:43:58 UTC 2020

Modified Files:
src/etc/defaults: npf.boot.conf

Log Message:
Fix minor typo, it's npf(7), not npf(4)


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/etc/defaults/npf.boot.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/npf.boot.conf
diff -u src/etc/defaults/npf.boot.conf:1.2 src/etc/defaults/npf.boot.conf:1.3
--- src/etc/defaults/npf.boot.conf:1.2	Sun Apr  7 02:08:08 2019
+++ src/etc/defaults/npf.boot.conf	Sun Aug  9 23:43:58 2020
@@ -1,7 +1,7 @@
-#	$NetBSD: npf.boot.conf,v 1.2 2019/04/07 02:08:08 sevan Exp $
+#	$NetBSD: npf.boot.conf,v 1.3 2020/08/09 23:43:58 gutteridge Exp $
 #
 # /etc/defaults/npf.boot.conf --
-#	initial configuration for npf(4)
+#	initial configuration for npf(7)
 #
 # DO NOT EDIT THIS FILE DIRECTLY; IT MAY BE REPLACED DURING A SYSTEM UPGRADE.
 # EDIT /etc/npf.boot.conf INSTEAD.



CVS commit: src/etc/defaults

2020-08-09 Thread David H. Gutteridge
Module Name:src
Committed By:   gutteridge
Date:   Sun Aug  9 23:43:58 UTC 2020

Modified Files:
src/etc/defaults: npf.boot.conf

Log Message:
Fix minor typo, it's npf(7), not npf(4)


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/etc/defaults/npf.boot.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2020-05-24 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun May 24 14:46:19 UTC 2020

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Set resize_gpt=NO by default


To generate a diff of this commit:
cvs rdiff -u -r1.154 -r1.155 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.154 src/etc/defaults/rc.conf:1.155
--- src/etc/defaults/rc.conf:1.154	Thu Apr  2 13:02:05 2020
+++ src/etc/defaults/rc.conf	Sun May 24 14:46:19 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.154 2020/04/02 13:02:05 roy Exp $
+#	$NetBSD: rc.conf,v 1.155 2020/05/24 14:46:19 jmcneill Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -126,7 +126,8 @@ lvm=NO
 #
 savecore=YES		savecore_flags="-z"
 			savecore_dir="/var/crash"
-resize_disklabel=NO# resize partition to fill disk
+resize_disklabel=NO# resize disklabel to fill disk
+resize_gpt=NO	# resize GPT to fill disk
 resize_root=NO	# resize root to fill partition
 per_user_tmp=NO	# per-user /tmp directories
 per_user_tmp_dir="/private/tmp"			# real storage for /tmp



CVS commit: src/etc/defaults

2020-05-24 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sun May 24 14:46:19 UTC 2020

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Set resize_gpt=NO by default


To generate a diff of this commit:
cvs rdiff -u -r1.154 -r1.155 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2020-04-02 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Thu Apr  2 13:02:05 UTC 2020

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Add a default dhcpcd_chrootdir


To generate a diff of this commit:
cvs rdiff -u -r1.153 -r1.154 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2020-04-02 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Thu Apr  2 13:02:05 UTC 2020

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Add a default dhcpcd_chrootdir


To generate a diff of this commit:
cvs rdiff -u -r1.153 -r1.154 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.153 src/etc/defaults/rc.conf:1.154
--- src/etc/defaults/rc.conf:1.153	Mon Feb  3 09:12:53 2020
+++ src/etc/defaults/rc.conf	Thu Apr  2 13:02:05 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.153 2020/02/03 09:12:53 roy Exp $
+#	$NetBSD: rc.conf,v 1.154 2020/04/02 13:02:05 roy Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -192,6 +192,7 @@ auto_ifconfig=YES# config all avail.
 net_interfaces=""# used only if above is NO
 flushroutes=YES	# flush routes in netstart
 dhcpcd=NO		dhcpcd_flags="-qM"	# For ifconfig_XXX=dhcp.
+dhcpcd_chrootdir="/var/chroot/dhcpcd"
 ntpdate=NO  		ntpdate_flags="-b -s"	# May need '-u' thru firewall
 ppp=YES			ppp_peers=""		# /etc/ppp/peers to call
 ip6mode=host	# host, autohost or router



CVS commit: src/etc/defaults

2020-02-03 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Mon Feb  3 09:12:53 UTC 2020

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Enable hostapd syslog support by default.


To generate a diff of this commit:
cvs rdiff -u -r1.152 -r1.153 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.152 src/etc/defaults/rc.conf:1.153
--- src/etc/defaults/rc.conf:1.152	Sun Sep 15 19:38:09 2019
+++ src/etc/defaults/rc.conf	Mon Feb  3 09:12:53 2020
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.152 2019/09/15 19:38:09 brad Exp $
+#	$NetBSD: rc.conf,v 1.153 2020/02/03 09:12:53 roy Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -316,7 +316,7 @@ iscsi_target=NO		iscsi_target_flags=""
 iscsid=NO
 
 # WPA daemons.
-hostapd=NO		hostapd_flags="-B /etc/hostapd.conf"
+hostapd=NO		hostapd_flags="-Bs /etc/hostapd.conf"
 wpa_supplicant=NO	wpa_supplicant_flags="-Ms -c /etc/wpa_supplicant.conf"
 
 # Bluetooth configuration



CVS commit: src/etc/defaults

2020-02-03 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Mon Feb  3 09:12:53 UTC 2020

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Enable hostapd syslog support by default.


To generate a diff of this commit:
cvs rdiff -u -r1.152 -r1.153 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2019-05-11 Thread Robert Elz
Module Name:src
Committed By:   kre
Date:   Sun May 12 01:45:25 UTC 2019

Modified Files:
src/etc/defaults: rc.conf

Log Message:
revert previous.   somehowI failedto see that was already done.


To generate a diff of this commit:
cvs rdiff -u -r1.149 -r1.150 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.149 src/etc/defaults/rc.conf:1.150
--- src/etc/defaults/rc.conf:1.149	Sun May 12 01:33:47 2019
+++ src/etc/defaults/rc.conf	Sun May 12 01:45:25 2019
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.149 2019/05/12 01:33:47 kre Exp $
+#	$NetBSD: rc.conf,v 1.150 2019/05/12 01:45:25 kre Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -340,7 +340,6 @@ autofs=NO		automount_flags=""
 apmd=NO			apmd_flags=""		# APM power management daemon.
 powerd=NO		powerd_flags=""		# power management daemon
 screenblank=NO		screenblank_flags=""	# wscons and FBIO screenblanker
-smtoff=NO
 
 moused=NO	# serial mouse handler
 			moused_flags="-p /dev/tty00"



CVS commit: src/etc/defaults

2019-05-11 Thread Robert Elz
Module Name:src
Committed By:   kre
Date:   Sun May 12 01:45:25 UTC 2019

Modified Files:
src/etc/defaults: rc.conf

Log Message:
revert previous.   somehowI failedto see that was already done.


To generate a diff of this commit:
cvs rdiff -u -r1.149 -r1.150 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2019-04-06 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Sun Apr  7 02:08:08 UTC 2019

Modified Files:
src/etc/defaults: npf.boot.conf

Log Message:
Allow DHCP
Neighbour Advertisement should be allowed both ways, otherwise
ipv6nd_sendadvertisement() from dhcpcd logs "Network is unreachable"


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/etc/defaults/npf.boot.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/npf.boot.conf
diff -u src/etc/defaults/npf.boot.conf:1.1 src/etc/defaults/npf.boot.conf:1.2
--- src/etc/defaults/npf.boot.conf:1.1	Tue Apr  2 01:50:32 2019
+++ src/etc/defaults/npf.boot.conf	Sun Apr  7 02:08:08 2019
@@ -1,4 +1,4 @@
-#	$NetBSD: npf.boot.conf,v 1.1 2019/04/02 01:50:32 sevan Exp $
+#	$NetBSD: npf.boot.conf,v 1.2 2019/04/07 02:08:08 sevan Exp $
 #
 # /etc/defaults/npf.boot.conf --
 #	initial configuration for npf(4)
@@ -25,11 +25,15 @@ pass stateful out to any port domain
 # (the DHCP server can be down or not responding).
 pass stateful out proto icmp icmp-type echo all
 
+# Allow DHCP
+pass out family inet4 proto udp from any port bootpc to any port bootps
+pass in family inet4 proto udp from any port bootps to any port bootpc
+
 # Allow IPv6 router/neighbor solicitation and advertisement.
 pass out  family inet6 proto ipv6-icmp icmp-type rtsol all
 pass in family inet6 proto ipv6-icmp icmp-type rtadv all
 pass out  family inet6 proto ipv6-icmp icmp-type neighsol all
-pass in family inet6 proto ipv6-icmp icmp-type neighadv all
+pass family inet6 proto ipv6-icmp icmp-type neighadv all
 
 # Enable CARP, to avoid spurious failovers.
 pass proto carp all



CVS commit: src/etc/defaults

2019-04-06 Thread Sevan Janiyan
Module Name:src
Committed By:   sevan
Date:   Sun Apr  7 02:08:08 UTC 2019

Modified Files:
src/etc/defaults: npf.boot.conf

Log Message:
Allow DHCP
Neighbour Advertisement should be allowed both ways, otherwise
ipv6nd_sendadvertisement() from dhcpcd logs "Network is unreachable"


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/etc/defaults/npf.boot.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2019-01-12 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Sat Jan 12 17:38:36 UTC 2019

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Setup default wpa_supplicant flags so that it:
  * Writes diagnostics to syslog
  * Enables interface matching to hotplug wireless interfaces
  * Uses /etc/wpa_supplicant.conf


To generate a diff of this commit:
cvs rdiff -u -r1.146 -r1.147 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.146 src/etc/defaults/rc.conf:1.147
--- src/etc/defaults/rc.conf:1.146	Fri Oct 19 14:11:12 2018
+++ src/etc/defaults/rc.conf	Sat Jan 12 17:38:36 2019
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.146 2018/10/19 14:11:12 martin Exp $
+#	$NetBSD: rc.conf,v 1.147 2019/01/12 17:38:36 roy Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -317,7 +317,7 @@ iscsid=NO
 
 # WPA daemons.
 hostapd=NO		hostapd_flags="-B /etc/hostapd.conf"
-wpa_supplicant=NO	wpa_supplicant_flags="" # -i -c
+wpa_supplicant=NO	wpa_supplicant_flags="-Ms -c /etc/wpa_supplicant.conf"
 
 # Bluetooth configuration
 bluetooth=NO



CVS commit: src/etc/defaults

2019-01-12 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Sat Jan 12 17:38:36 UTC 2019

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Setup default wpa_supplicant flags so that it:
  * Writes diagnostics to syslog
  * Enables interface matching to hotplug wireless interfaces
  * Uses /etc/wpa_supplicant.conf


To generate a diff of this commit:
cvs rdiff -u -r1.146 -r1.147 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2018-05-25 Thread Valeriy E. Ushakov
Module Name:src
Committed By:   uwe
Date:   Fri May 25 20:48:54 UTC 2018

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Provide resize_disklabel=NO default.  Used by arm images and is not
part of the stock rc.d yet.  This silences rc when you delete the
whole resize_* block from rc.conf after the first boot.


To generate a diff of this commit:
cvs rdiff -u -r1.142 -r1.143 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2018-05-25 Thread Valeriy E. Ushakov
Module Name:src
Committed By:   uwe
Date:   Fri May 25 20:48:54 UTC 2018

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Provide resize_disklabel=NO default.  Used by arm images and is not
part of the stock rc.d yet.  This silences rc when you delete the
whole resize_* block from rc.conf after the first boot.


To generate a diff of this commit:
cvs rdiff -u -r1.142 -r1.143 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.142 src/etc/defaults/rc.conf:1.143
--- src/etc/defaults/rc.conf:1.142	Wed Apr 18 04:27:47 2018
+++ src/etc/defaults/rc.conf	Fri May 25 20:48:54 2018
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.142 2018/04/18 04:27:47 martin Exp $
+#	$NetBSD: rc.conf,v 1.143 2018/05/25 20:48:54 uwe Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -120,6 +120,7 @@ lvm=NO
 #
 savecore=YES		savecore_flags="-z"
 			savecore_dir="/var/crash"
+resize_disklabel=NO# resize partion to fill disk
 resize_root=NO	# resize root to fill partition
 per_user_tmp=NO	# per-user /tmp directories
 per_user_tmp_dir="/private/tmp"			# real storage for /tmp



CVS commit: src/etc/defaults

2018-04-17 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Apr 18 04:27:47 UTC 2018

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Cosmetics: default to dmesg -t when writing /var/run/dmesg.boot -
the timestamps at boot time are mostly useless.


To generate a diff of this commit:
cvs rdiff -u -r1.141 -r1.142 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2018-04-17 Thread Martin Husemann
Module Name:src
Committed By:   martin
Date:   Wed Apr 18 04:27:47 UTC 2018

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Cosmetics: default to dmesg -t when writing /var/run/dmesg.boot -
the timestamps at boot time are mostly useless.


To generate a diff of this commit:
cvs rdiff -u -r1.141 -r1.142 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.141 src/etc/defaults/rc.conf:1.142
--- src/etc/defaults/rc.conf:1.141	Tue Jan  9 03:31:14 2018
+++ src/etc/defaults/rc.conf	Wed Apr 18 04:27:47 2018
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.141 2018/01/09 03:31:14 christos Exp $
+#	$NetBSD: rc.conf,v 1.142 2018/04/18 04:27:47 martin Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -125,7 +125,7 @@ per_user_tmp=NO	# per-user /tmp dire
 per_user_tmp_dir="/private/tmp"			# real storage for /tmp
 clear_tmp=YES	# clear /tmp after reboot
 update_motd=YES	# updates /etc/motd
-dmesg=YES		dmesg_flags=""		# write /var/run/dmesg.boot
+dmesg=YES		dmesg_flags="-t"	# write /var/run/dmesg.boot
 accounting=NO	# uses /var/account/acct
 newsyslog=NO		newsyslog_flags=""	# trim log files
 quota=YES	# check and enable quotas



CVS commit: src/etc/defaults

2015-12-26 Thread Iain Hibbert
Module Name:src
Committed By:   plunky
Date:   Sat Dec 26 21:05:11 UTC 2015

Modified Files:
src/etc/defaults: rc.conf

Log Message:
"ip6addrctl_enable" is now "ip6addrctl", set the default appropriately


To generate a diff of this commit:
cvs rdiff -u -r1.134 -r1.135 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2015-12-26 Thread Iain Hibbert
Module Name:src
Committed By:   plunky
Date:   Sat Dec 26 21:05:11 UTC 2015

Modified Files:
src/etc/defaults: rc.conf

Log Message:
"ip6addrctl_enable" is now "ip6addrctl", set the default appropriately


To generate a diff of this commit:
cvs rdiff -u -r1.134 -r1.135 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.134 src/etc/defaults/rc.conf:1.135
--- src/etc/defaults/rc.conf:1.134	Sun Dec 13 02:27:06 2015
+++ src/etc/defaults/rc.conf	Sat Dec 26 21:05:11 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.134 2015/12/13 02:27:06 christos Exp $
+#	$NetBSD: rc.conf,v 1.135 2015/12/26 21:05:11 plunky Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -376,7 +376,7 @@ makemandb=YES
 blacklistd=NO
 
 # IPv6 address selection policy
-ip6addrctl_enable=NO
+ip6addrctl=NO
 # ipv6_prefer, ipv4_prefer, auto
 ip6addrctl_policy=auto
 ip6addrctl_verbose=NO



CVS commit: src/etc/defaults

2015-12-12 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Dec 13 02:27:06 UTC 2015

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Add defaults for ip6addrctl


To generate a diff of this commit:
cvs rdiff -u -r1.133 -r1.134 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2015-12-12 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Dec 13 02:27:06 UTC 2015

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Add defaults for ip6addrctl


To generate a diff of this commit:
cvs rdiff -u -r1.133 -r1.134 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.133 src/etc/defaults/rc.conf:1.134
--- src/etc/defaults/rc.conf:1.133	Mon Mar 30 06:58:37 2015
+++ src/etc/defaults/rc.conf	Sat Dec 12 21:27:06 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.133 2015/03/30 10:58:37 chopps Exp $
+#	$NetBSD: rc.conf,v 1.134 2015/12/13 02:27:06 christos Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -374,3 +374,9 @@ makemandb=YES
 
 # blacklist daemon, needs npf
 blacklistd=NO
+
+# IPv6 address selection policy
+ip6addrctl_enable=NO
+# ipv6_prefer, ipv4_prefer, auto
+ip6addrctl_policy=auto
+ip6addrctl_verbose=NO



CVS commit: src/etc/defaults

2015-01-25 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Jan 25 16:26:34 UTC 2015

Modified Files:
src/etc/defaults: rc.conf

Log Message:
add blacklistd


To generate a diff of this commit:
cvs rdiff -u -r1.129 -r1.130 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.129 src/etc/defaults/rc.conf:1.130
--- src/etc/defaults/rc.conf:1.129	Thu Jan 22 14:50:21 2015
+++ src/etc/defaults/rc.conf	Sun Jan 25 11:26:34 2015
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.129 2015/01/22 19:50:21 jmcneill Exp $
+#	$NetBSD: rc.conf,v 1.130 2015/01/25 16:26:34 christos Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -367,3 +367,6 @@ random_seed=YES
 
 # Creating / updating of man page index on boot
 makemandb=YES
+
+# blacklist daemon, needs npf
+blacklistd=NO



CVS commit: src/etc/defaults

2015-01-25 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Sun Jan 25 16:26:34 UTC 2015

Modified Files:
src/etc/defaults: rc.conf

Log Message:
add blacklistd


To generate a diff of this commit:
cvs rdiff -u -r1.129 -r1.130 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2014-09-26 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Sep 26 10:36:11 UTC 2014

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Re-add default for rtsol. /etc/rc.d/network still checks for this
setting and complains if it isn't defined at all. Add a comment that
it is deprecated and suggest to use dhcpcd=YES instead.


To generate a diff of this commit:
cvs rdiff -u -r1.126 -r1.127 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.126 src/etc/defaults/rc.conf:1.127
--- src/etc/defaults/rc.conf:1.126	Sat Sep 13 11:07:08 2014
+++ src/etc/defaults/rc.conf	Fri Sep 26 10:36:11 2014
@@ -1,187 +1,188 @@
-#	$NetBSD: rc.conf,v 1.126 2014/09/13 11:07:08 roy Exp $
-#
-# /etc/defaults/rc.conf --
-#	default configuration of /etc/rc.conf
-#
-# see rc.conf(5) for more information.
-#
-# DO NOT EDIT THIS FILE DIRECTLY; IT MAY BE REPLACED DURING A SYSTEM UPGRADE.
-# EDIT /etc/rc.conf INSTEAD.
-#
-
-#
-# Use program=YES to enable program, NO to disable it. program_flags are
-# passed to the program on the command line.
-#
-
-# Uncomment this if you want to use local paths in rc.
-#
-#export PATH=$PATH:/usr/pkg/sbin:/usr/pkg/bin:/usr/local/sbin:/usr/local/bin
-
-# Uncomment the following to execute each /etc/rc.d script in
-# the current shell rather than in a subshell.  This may be
-# faster on very slow machines that have an expensive fork(2).
-#	NOTE:	USE THIS AT YOUR OWN RISK; A ROGUE COMMAND
-#		MAY INADVERTENTLY PREVENT BOOT TO MULTIUSER.
-#
-#rc_fast_and_loose=YES
-
-# If rc_silent is true then /etc/rc will suppress most output to
-# the console.  The default is taken from the AB_SILENT flag passed
-# from the boot loader to the kernel in the boothowto(9) variable.
-#
-# rc_silent_cmd is executed once for each suppressed line of output.
-# Useful values are : and twiddle.
-#
-rc_silent=$( [ $(( $(/sbin/sysctl -n kern.boothowto 2/dev/null || echo 0) \
-		 0x4 )) != 0 ]  echo true || echo false )
-rc_silent_cmd=twiddle
-
-# Additional flags to the rcorder(8) that's run by /etc/rc.
-#
-rc_rcorder_flags=
-
-# The directories searched for rc scripts.
-# These directories must be part of the root file system.
-rc_directories=/etc/rc.d 
-
-# If this is set to NO, shutdown(8) will not run /etc/rc.shutdown.
-#
-do_rcshutdown=YES
-
-# Additional flags to the rcorder(8) that's run by /etc/rc.shutdown.
-#
-rcshutdown_rcorder_flags=
-
-# If this is non-blank, use as the number of seconds to run a watchdog
-# timer which will terminate /etc/rc.shutdown if the timeout expires.
-#
-rcshutdown_timeout=
-
-
-# Basic network configuration
-#
-
-# Fully Qualified Internet Domain Name (a.k.a. hostname, e.g. foo.baz.edu).
-# If blank, use /etc/myname.
-#
-hostname=
-
-# If there's only one way out of your IPv4 network, set this to the hostname
-# or the IPv4 address of the router that will get your packets off the LAN.
-# If blank, use /etc/mygate.
-#
-defaultroute=
-
-# Same thing for IPv6.  If blank, use /etc/mygate6.
-#
-defaultroute6=
-
-# The NIS domain name (formerly known as Yellow Pages); not in any way
-# related to Internet domain names.
-# If blank, use /etc/defaultdomain.
-#
-domainname=
-
-# Filesystems to mount early in boot-up.
-# Note that `/var' is needed in $critical_filesystems_local (or
-# implied as part of `/') as certain services that need /var (such as
-# dhclient) may be needed to get the network operational enough to mount
-# the $critical_filesystems_remote.  Prepending OPTIONAL:  means it
-# will not be an error if that file system is not present in fstab(5).
-#
-critical_filesystems_local=OPTIONAL:/var
-critical_filesystems_remote=OPTIONAL:/usr
-
-# Swap device controls.
-#
-no_swap=NO		# Set to YES if you have purposefully setup no swap
-			# partitions and don't want to be warned about it.
-swapoff=YES		# Remove block-type swap partitions upon shutdown
-			# This defaults to yes, so that raids shutdown cleanly
-
-# Concatenated disk driver.
-#
-ccd=YES
-
-# RAIDframe driver (manually configured devices).
-#
-raidframe=YES
-
-# Crypto file system.
-#
-cgd=YES
-
-# Logical Volume Manager
-#
-lvm=NO
-
-# One-time actions and programs on boot-up.
-#
-savecore=YES		savecore_flags=-z
-			savecore_dir=/var/crash
-per_user_tmp=NO	# per-user /tmp directories
-per_user_tmp_dir=/private/tmp			# real storage for /tmp
-clear_tmp=YES	# clear /tmp after reboot
-update_motd=YES	# updates /etc/motd
-dmesg=YES		dmesg_flags=		# write /var/run/dmesg.boot
-accounting=NO	# uses /var/account/acct
-newsyslog=NO		newsyslog_flags=	# trim log files
-quota=YES	# check and enable quotas
-ldconfig=YES	# rebuild a.out ldconfig cache
-sysdb=YES	# build system databases
-rndctl=NO		rndctl_flags=		# configure rndctl(8)
-gpio=NO		# configure GPIO devices
-
-# cope with other OSes using the real time clock at 

CVS commit: src/etc/defaults

2014-09-26 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Sep 26 11:04:06 UTC 2014

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Revert last change. This was already fixed differently and something
went wrong with the change anyway. Sorry


To generate a diff of this commit:
cvs rdiff -u -r1.127 -r1.128 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.127 src/etc/defaults/rc.conf:1.128
--- src/etc/defaults/rc.conf:1.127	Fri Sep 26 10:36:11 2014
+++ src/etc/defaults/rc.conf	Fri Sep 26 11:04:06 2014
@@ -1,188 +1,187 @@
-#	$NetBSD: rc.conf,v 1.127 2014/09/26 10:36:11 tron Exp $
- #
- # /etc/defaults/rc.conf --
- #	default configuration of /etc/rc.conf
- #
- # see rc.conf(5) for more information.
- #
- # DO NOT EDIT THIS FILE DIRECTLY; IT MAY BE REPLACED DURING A SYSTEM UPGRADE.
- # EDIT /etc/rc.conf INSTEAD.
- #
-
- #
- # Use program=YES to enable program, NO to disable it. program_flags are
- # passed to the program on the command line.
- #
-
- # Uncomment this if you want to use local paths in rc.
- #
- #export PATH=$PATH:/usr/pkg/sbin:/usr/pkg/bin:/usr/local/sbin:/usr/local/bin
-
- # Uncomment the following to execute each /etc/rc.d script in
- # the current shell rather than in a subshell.  This may be
- # faster on very slow machines that have an expensive fork(2).
- #	NOTE:	USE THIS AT YOUR OWN RISK; A ROGUE COMMAND
- #		MAY INADVERTENTLY PREVENT BOOT TO MULTIUSER.
- #
- #rc_fast_and_loose=YES
-
- # If rc_silent is true then /etc/rc will suppress most output to
- # the console.  The default is taken from the AB_SILENT flag passed
- # from the boot loader to the kernel in the boothowto(9) variable.
- #
- # rc_silent_cmd is executed once for each suppressed line of output.
- # Useful values are : and twiddle.
- #
- rc_silent=$( [ $(( $(/sbin/sysctl -n kern.boothowto 2/dev/null || echo 0) \
-		  0x4 )) != 0 ]  echo true || echo false )
- rc_silent_cmd=twiddle
-
- # Additional flags to the rcorder(8) that's run by /etc/rc.
- #
- rc_rcorder_flags=
-
- # The directories searched for rc scripts.
- # These directories must be part of the root file system.
- rc_directories=/etc/rc.d 
-
- # If this is set to NO, shutdown(8) will not run /etc/rc.shutdown.
- #
- do_rcshutdown=YES
-
- # Additional flags to the rcorder(8) that's run by /etc/rc.shutdown.
- #
- rcshutdown_rcorder_flags=
-
- # If this is non-blank, use as the number of seconds to run a watchdog
- # timer which will terminate /etc/rc.shutdown if the timeout expires.
- #
- rcshutdown_timeout=
-
-
- # Basic network configuration
- #
-
- # Fully Qualified Internet Domain Name (a.k.a. hostname, e.g. foo.baz.edu).
- # If blank, use /etc/myname.
- #
- hostname=
-
- # If there's only one way out of your IPv4 network, set this to the hostname
- # or the IPv4 address of the router that will get your packets off the LAN.
- # If blank, use /etc/mygate.
- #
- defaultroute=
-
- # Same thing for IPv6.  If blank, use /etc/mygate6.
- #
- defaultroute6=
-
- # The NIS domain name (formerly known as Yellow Pages); not in any way
- # related to Internet domain names.
- # If blank, use /etc/defaultdomain.
- #
- domainname=
-
- # Filesystems to mount early in boot-up.
- # Note that `/var' is needed in $critical_filesystems_local (or
- # implied as part of `/') as certain services that need /var (such as
- # dhclient) may be needed to get the network operational enough to mount
- # the $critical_filesystems_remote.  Prepending OPTIONAL:  means it
- # will not be an error if that file system is not present in fstab(5).
- #
- critical_filesystems_local=OPTIONAL:/var
- critical_filesystems_remote=OPTIONAL:/usr
-
- # Swap device controls.
- #
- no_swap=NO		# Set to YES if you have purposefully setup no swap
-			 # partitions and don't want to be warned about it.
- swapoff=YES		# Remove block-type swap partitions upon shutdown
-			 # This defaults to yes, so that raids shutdown cleanly
-
- # Concatenated disk driver.
- #
- ccd=YES
-
- # RAIDframe driver (manually configured devices).
- #
- raidframe=YES
-
- # Crypto file system.
- #
- cgd=YES
-
- # Logical Volume Manager
- #
- lvm=NO
-
- # One-time actions and programs on boot-up.
- #
- savecore=YES		savecore_flags=-z
-			 savecore_dir=/var/crash
- per_user_tmp=NO	# per-user /tmp directories
- per_user_tmp_dir=/private/tmp			# real storage for /tmp
- clear_tmp=YES	# clear /tmp after reboot
- update_motd=YES	# updates /etc/motd
- dmesg=YES		dmesg_flags=		# write /var/run/dmesg.boot
- accounting=NO	# uses /var/account/acct
- newsyslog=NO		newsyslog_flags=	# trim log files
- quota=YES	# check and enable quotas
- ldconfig=YES	# rebuild a.out ldconfig cache
- sysdb=YES	# build system databases
- rndctl=NO		rndctl_flags=		# configure rndctl(8)
- gpio=NO		# configure GPIO devices
-
- # cope with other OSes 

CVS commit: src/etc/defaults

2014-09-26 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Sep 26 10:36:11 UTC 2014

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Re-add default for rtsol. /etc/rc.d/network still checks for this
setting and complains if it isn't defined at all. Add a comment that
it is deprecated and suggest to use dhcpcd=YES instead.


To generate a diff of this commit:
cvs rdiff -u -r1.126 -r1.127 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2014-09-26 Thread Matthias Scheler
Module Name:src
Committed By:   tron
Date:   Fri Sep 26 11:04:06 UTC 2014

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Revert last change. This was already fixed differently and something
went wrong with the change anyway. Sorry


To generate a diff of this commit:
cvs rdiff -u -r1.127 -r1.128 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2014-09-13 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Sat Sep 13 11:06:42 UTC 2014

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Add the -M flag to dhcpcd so it stays in master mode even for one
interface. Suggested by apb@


To generate a diff of this commit:
cvs rdiff -u -r1.124 -r1.125 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.124 src/etc/defaults/rc.conf:1.125
--- src/etc/defaults/rc.conf:1.124	Thu Sep 11 13:10:03 2014
+++ src/etc/defaults/rc.conf	Sat Sep 13 11:06:42 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.124 2014/09/11 13:10:03 roy Exp $
+#	$NetBSD: rc.conf,v 1.125 2014/09/13 11:06:42 roy Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -175,7 +175,7 @@ auto_ifconfig=YES# config all avail.
 net_interfaces=# used only if above is NO
 flushroutes=YES	# flush routes in netstart
 dhcpcd=NO
-dhcpcd_flags=-q# For ifconfig_XXX=dhcp.
+			dhcpcd_flags=-qM	# For ifconfig_XXX=dhcp.
 dhclient=NO	# behave as a DHCP client
 			dhclient_flags=	# blank: config all interfaces
 ntpdate=NO  		ntpdate_flags=-b -s	# May need '-u' thru firewall



CVS commit: src/etc/defaults

2014-09-13 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Sat Sep 13 11:07:08 UTC 2014

Modified Files:
src/etc/defaults: rc.conf

Log Message:
rtsol has gone.


To generate a diff of this commit:
cvs rdiff -u -r1.125 -r1.126 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.125 src/etc/defaults/rc.conf:1.126
--- src/etc/defaults/rc.conf:1.125	Sat Sep 13 11:06:42 2014
+++ src/etc/defaults/rc.conf	Sat Sep 13 11:07:08 2014
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.125 2014/09/13 11:06:42 roy Exp $
+#	$NetBSD: rc.conf,v 1.126 2014/09/13 11:07:08 roy Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -182,7 +182,6 @@ ntpdate=NO  		ntpdate_flags=-b -s	# Ma
 ppp=YES			ppp_peers=		# /etc/ppp/peers to call
 ip6mode=host	# host, autohost or router
 ip6uniquelocal=NO# IPv6 unique-local forwarding
-rtsol=NO		rtsol_flags=-a	# for ip6mode=autohost only
 
 # Special treatment for interfaces that need to be downed on
 # shutdown (because they might cause unnecessary costs or block resources



CVS commit: src/etc/defaults

2014-09-13 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Sat Sep 13 11:06:42 UTC 2014

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Add the -M flag to dhcpcd so it stays in master mode even for one
interface. Suggested by apb@


To generate a diff of this commit:
cvs rdiff -u -r1.124 -r1.125 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2014-09-13 Thread Roy Marples
Module Name:src
Committed By:   roy
Date:   Sat Sep 13 11:07:08 UTC 2014

Modified Files:
src/etc/defaults: rc.conf

Log Message:
rtsol has gone.


To generate a diff of this commit:
cvs rdiff -u -r1.125 -r1.126 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2013-01-10 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Fri Jan 11 04:32:42 UTC 2013

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Nix `-b 1024' from ssh_keygen_flags in /etc/defaults/rc.conf.

No objections on tech-security:

http://mail-index.NetBSD.org/tech-security/2012/09/03/msg000548.html

The security of generating keys at boot remains questionable, but
this change makes that no worse.


To generate a diff of this commit:
cvs rdiff -u -r1.120 -r1.121 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.120 src/etc/defaults/rc.conf:1.121
--- src/etc/defaults/rc.conf:1.120	Mon Aug 13 08:20:44 2012
+++ src/etc/defaults/rc.conf	Fri Jan 11 04:32:41 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.120 2012/08/13 08:20:44 christos Exp $
+#	$NetBSD: rc.conf,v 1.121 2013/01/11 04:32:41 riastradh Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -228,7 +228,7 @@ ntpd=NO			ntpd_flags=		# see below for
 postfix=${_rc_d_postfix:-YES}
 lpd=NO			lpd_flags=-s		# -s secure unix domain only
 sshd=NO			sshd_flags=
-ssh_keygen_flags=-b 1024	# generate 1024 bit keys if host keys missing
+ssh_keygen_flags=
 ftpd=NO			ftpd_flags=-ll
 httpd=NO		httpd_flags=
 			httpd_wwwdir=/var/www



CVS commit: src/etc/defaults

2013-01-10 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Fri Jan 11 04:32:42 UTC 2013

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Nix `-b 1024' from ssh_keygen_flags in /etc/defaults/rc.conf.

No objections on tech-security:

http://mail-index.NetBSD.org/tech-security/2012/09/03/msg000548.html

The security of generating keys at boot remains questionable, but
this change makes that no worse.


To generate a diff of this commit:
cvs rdiff -u -r1.120 -r1.121 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2012-08-13 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Aug 13 08:20:45 UTC 2012

Modified Files:
src/etc/defaults: rc.conf

Log Message:
No need to specify nfsd flags anymore. The defaults DTRT.


To generate a diff of this commit:
cvs rdiff -u -r1.119 -r1.120 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.119 src/etc/defaults/rc.conf:1.120
--- src/etc/defaults/rc.conf:1.119	Tue Feb  7 14:13:30 2012
+++ src/etc/defaults/rc.conf	Mon Aug 13 04:20:44 2012
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.119 2012/02/07 19:13:30 joerg Exp $
+#	$NetBSD: rc.conf,v 1.120 2012/08/13 08:20:44 christos Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -288,7 +288,7 @@ yppasswdd=NO		yppasswdd_flags=
 mountd=NO		mountd_flags=		# NFS mount requests daemon
 nfs_client=NO	# enable client daemons
 nfs_server=NO	# enable server daemons
-			nfsd_flags=-6tun 4
+			nfsd_flags=
 lockd=NO		lockd_flags=
 statd=NO		statd_flags=
 amd=NO			amd_flags=-l syslog -x error,noinfo,nostats



CVS commit: src/etc/defaults

2012-08-13 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Mon Aug 13 08:20:45 UTC 2012

Modified Files:
src/etc/defaults: rc.conf

Log Message:
No need to specify nfsd flags anymore. The defaults DTRT.


To generate a diff of this commit:
cvs rdiff -u -r1.119 -r1.120 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/etc/defaults

2011-12-22 Thread Izumi Tsutsui
Module Name:src
Committed By:   tsutsui
Date:   Fri Dec 23 05:05:04 UTC 2011

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Add a default for isibootd(8). Pointed out by nonaka@.


To generate a diff of this commit:
cvs rdiff -u -r1.117 -r1.118 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.117 src/etc/defaults/rc.conf:1.118
--- src/etc/defaults/rc.conf:1.117	Wed Nov 23 10:47:48 2011
+++ src/etc/defaults/rc.conf	Fri Dec 23 05:05:04 2011
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.117 2011/11/23 10:47:48 tls Exp $
+#	$NetBSD: rc.conf,v 1.118 2011/12/23 05:05:04 tsutsui Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -266,6 +266,7 @@ rbootd=NO		rbootd_flags=
 mopd=NO			mopd_flags=-a
 ndbootd=NO		ndbootd_flags=-s /tftpboot /tftpboot/bootyy
 rtadvd=NO		rtadvd_flags=
+isibootd=NO		isibootd_flags=
 
 # X11 daemons.
 #



CVS commit: src/etc/defaults

2009-09-19 Thread David A. Holland
Module Name:src
Committed By:   dholland
Date:   Sat Sep 19 19:47:48 UTC 2009

Modified Files:
src/etc/defaults: rc.conf

Log Message:
Make rtsold_flags default to -a as per PR 39657.


To generate a diff of this commit:
cvs rdiff -u -r1.106 -r1.107 src/etc/defaults/rc.conf

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/etc/defaults/rc.conf
diff -u src/etc/defaults/rc.conf:1.106 src/etc/defaults/rc.conf:1.107
--- src/etc/defaults/rc.conf:1.106	Mon Sep 14 12:05:12 2009
+++ src/etc/defaults/rc.conf	Sat Sep 19 19:47:48 2009
@@ -1,4 +1,4 @@
-#	$NetBSD: rc.conf,v 1.106 2009/09/14 12:05:12 apb Exp $
+#	$NetBSD: rc.conf,v 1.107 2009/09/19 19:47:48 dholland Exp $
 #
 # /etc/defaults/rc.conf --
 #	default configuration of /etc/rc.conf
@@ -251,7 +251,7 @@
 gated=NO
 mrouted=NO		mrouted_flags=
 route6d=NO		route6d_flags=
-rtsold=NO		rtsold_flags=		# for ip6mode=autohost only
+rtsold=NO		rtsold_flags=-a	# for ip6mode=autohost only
 
 # Daemons used to boot other hosts over a network.
 #