Deleted Added
full compact
rc.conf (225574) rc.conf (226654)
1#!/bin/sh
2
3# This is rc.conf - a file full of useful variables that you can set
4# to change the default startup behavior of your system. You should
5# not edit this file! Put any overrides into one of the ${rc_conf_files}
6# instead and you will be able to update these defaults later without
7# spamming your local configuration information.
8#
9# The ${rc_conf_files} files should only contain values which override
10# values set in this file. This eases the upgrade path when defaults
11# are changed and new features are added.
12#
13# All arguments must be in double or single quotes.
14#
15# For a more detailed explanation of all the rc.conf variables, please
16# refer to the rc.conf(5) manual page.
17#
1#!/bin/sh
2
3# This is rc.conf - a file full of useful variables that you can set
4# to change the default startup behavior of your system. You should
5# not edit this file! Put any overrides into one of the ${rc_conf_files}
6# instead and you will be able to update these defaults later without
7# spamming your local configuration information.
8#
9# The ${rc_conf_files} files should only contain values which override
10# values set in this file. This eases the upgrade path when defaults
11# are changed and new features are added.
12#
13# All arguments must be in double or single quotes.
14#
15# For a more detailed explanation of all the rc.conf variables, please
16# refer to the rc.conf(5) manual page.
17#
18# $FreeBSD: head/etc/defaults/rc.conf 225574 2011-09-15 09:22:49Z dougb $
18# $FreeBSD: head/etc/defaults/rc.conf 226654 2011-10-23 09:08:42Z mm $
19
20##############################################################
21### Important initial Boot-time options ####################
22##############################################################
23
24rc_debug="NO" # Set to YES to enable debugging output from rc.d
25rc_info="NO" # Enables display of informational messages at boot.
26rc_startmsgs="YES" # Show "Starting foo:" messages at boot

--- 351 unchanged lines hidden (view full) ---

378# Be sure to understand the security implications of running SNMP v1/v2
379# in your network.
380bsnmpd_enable="NO" # Run the SNMP daemon (or NO).
381bsnmpd_flags="" # Flags for bsnmpd.
382
383### Network routing options: ###
384defaultrouter="NO" # Set to default gateway (or NO).
385static_arp_pairs="" # Set to static ARP list (or leave empty).
19
20##############################################################
21### Important initial Boot-time options ####################
22##############################################################
23
24rc_debug="NO" # Set to YES to enable debugging output from rc.d
25rc_info="NO" # Enables display of informational messages at boot.
26rc_startmsgs="YES" # Show "Starting foo:" messages at boot

--- 351 unchanged lines hidden (view full) ---

378# Be sure to understand the security implications of running SNMP v1/v2
379# in your network.
380bsnmpd_enable="NO" # Run the SNMP daemon (or NO).
381bsnmpd_flags="" # Flags for bsnmpd.
382
383### Network routing options: ###
384defaultrouter="NO" # Set to default gateway (or NO).
385static_arp_pairs="" # Set to static ARP list (or leave empty).
386static_ndp_pairs="" # Set to static NDP list (or leave empty).
386static_routes="" # Set to static route list (or leave empty).
387natm_static_routes="" # Set to static route list for NATM (or leave empty).
388gateway_enable="NO" # Set to YES if this host will be a gateway.
389routed_enable="NO" # Set to YES to enable a routing daemon.
390routed_program="/sbin/routed" # Name of routing daemon to use if enabled.
391routed_flags="-q" # Flags for routing daemon.
392mrouted_enable="NO" # Do IPv4 multicast routing.
393mrouted_program="/usr/local/sbin/mrouted" # Name of IPv4 multicast

--- 331 unchanged lines hidden ---
387static_routes="" # Set to static route list (or leave empty).
388natm_static_routes="" # Set to static route list for NATM (or leave empty).
389gateway_enable="NO" # Set to YES if this host will be a gateway.
390routed_enable="NO" # Set to YES to enable a routing daemon.
391routed_program="/sbin/routed" # Name of routing daemon to use if enabled.
392routed_flags="-q" # Flags for routing daemon.
393mrouted_enable="NO" # Do IPv4 multicast routing.
394mrouted_program="/usr/local/sbin/mrouted" # Name of IPv4 multicast

--- 331 unchanged lines hidden ---