Deleted Added
full compact
rc.conf (172377) rc.conf (172586)
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 172377 2007-09-28 10:38:08Z bushman $
18# $FreeBSD: head/etc/defaults/rc.conf 172586 2007-10-12 16:35:36Z emax $
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.
26rcshutdown_timeout="30" # Seconds to wait before terminating rc.shutdown

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

200ppp_enable="NO" # Start user-ppp (or NO).
201ppp_program="/usr/sbin/ppp" # Path to user-ppp program.
202ppp_mode="auto" # Choice of "auto", "ddial", "direct" or "dedicated".
203 # For details see man page for ppp(8). Default is auto.
204ppp_nat="YES" # Use PPP's internal network address translation or NO.
205ppp_profile="papchap" # Which profile to use from /etc/ppp/ppp.conf.
206ppp_user="root" # Which user to run ppp as
207
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.
26rcshutdown_timeout="30" # Seconds to wait before terminating rc.shutdown

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

200ppp_enable="NO" # Start user-ppp (or NO).
201ppp_program="/usr/sbin/ppp" # Path to user-ppp program.
202ppp_mode="auto" # Choice of "auto", "ddial", "direct" or "dedicated".
203 # For details see man page for ppp(8). Default is auto.
204ppp_nat="YES" # Use PPP's internal network address translation or NO.
205ppp_profile="papchap" # Which profile to use from /etc/ppp/ppp.conf.
206ppp_user="root" # Which user to run ppp as
207
208# Start multiple instances of ppp at boot time
209#ppp_profile="profile1 profile2 profile3" # Which profiles to use
210#ppp_profile1_mode="ddial" # Override ppp mode for profile1
211#ppp_profile2_nat="NO" # Override nat mode for profile2
212# profile3 uses default ppp_mode and ppp_nat
213
208### Network daemon (miscellaneous) ###
209hostapd_enable="NO" # Run hostap daemon.
210syslogd_enable="YES" # Run syslog daemon (or NO).
211syslogd_program="/usr/sbin/syslogd" # path to syslogd, if you want a different one.
212syslogd_flags="-s" # Flags to syslogd (if enabled).
213inetd_enable="NO" # Run the network daemon dispatcher (YES/NO).
214inetd_program="/usr/sbin/inetd" # path to inetd, if you want a different one.
215inetd_flags="-wW -C 60" # Optional flags to inetd

--- 412 unchanged lines hidden ---
214### Network daemon (miscellaneous) ###
215hostapd_enable="NO" # Run hostap daemon.
216syslogd_enable="YES" # Run syslog daemon (or NO).
217syslogd_program="/usr/sbin/syslogd" # path to syslogd, if you want a different one.
218syslogd_flags="-s" # Flags to syslogd (if enabled).
219inetd_enable="NO" # Run the network daemon dispatcher (YES/NO).
220inetd_program="/usr/sbin/inetd" # path to inetd, if you want a different one.
221inetd_flags="-wW -C 60" # Optional flags to inetd

--- 412 unchanged lines hidden ---