Deleted Added
full compact
rc.conf (155655) rc.conf (157654)
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 155655 2006-02-14 04:16:56Z imp $
18# $FreeBSD: head/etc/defaults/rc.conf 157654 2006-04-11 09:02:07Z flz $
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

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

224sshd_program="/usr/sbin/sshd" # path to sshd, if you want a different one.
225sshd_flags="" # Additional flags for sshd.
226ftpd_enable="NO" # Enable stand-alone ftpd.
227ftpd_program="/usr/libexec/ftpd" # Path to ftpd, if you want a different one.
228ftpd_flags="" # Additional flags to stand-alone ftpd.
229
230### Network daemon (NFS): All need rpcbind_enable="YES" ###
231amd_enable="NO" # Run amd service with $amd_flags (or NO).
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

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

224sshd_program="/usr/sbin/sshd" # path to sshd, if you want a different one.
225sshd_flags="" # Additional flags for sshd.
226ftpd_enable="NO" # Enable stand-alone ftpd.
227ftpd_program="/usr/libexec/ftpd" # Path to ftpd, if you want a different one.
228ftpd_flags="" # Additional flags to stand-alone ftpd.
229
230### Network daemon (NFS): All need rpcbind_enable="YES" ###
231amd_enable="NO" # Run amd service with $amd_flags (or NO).
232amd_program="/usr/sbin/amd" # path to amd, if you want a different one.
232amd_flags="-a /.amd_mnt -l syslog /host /etc/amd.map /net /etc/amd.map"
233amd_map_program="NO" # Can be set to "ypcat -k amd.master"
234nfs_client_enable="NO" # This host is an NFS client (or NO).
235nfs_access_cache="2" # Client cache timeout in seconds
236nfs_server_enable="NO" # This host is an NFS server (or NO).
237nfs_server_flags="-u -t -n 4" # Flags to nfsd (if enabled).
238mountd_enable="NO" # Run mountd (or NO).
239mountd_flags="-r" # Flags to mountd (if NFS server enabled).

--- 351 unchanged lines hidden ---
233amd_flags="-a /.amd_mnt -l syslog /host /etc/amd.map /net /etc/amd.map"
234amd_map_program="NO" # Can be set to "ypcat -k amd.master"
235nfs_client_enable="NO" # This host is an NFS client (or NO).
236nfs_access_cache="2" # Client cache timeout in seconds
237nfs_server_enable="NO" # This host is an NFS server (or NO).
238nfs_server_flags="-u -t -n 4" # Flags to nfsd (if enabled).
239mountd_enable="NO" # Run mountd (or NO).
240mountd_flags="-r" # Flags to mountd (if NFS server enabled).

--- 351 unchanged lines hidden ---