| 1 |
# /etc/conf.d/rc:
|
| 2 |
# $Header$
|
| 3 |
|
| 4 |
#
|
| 5 |
# Global config file for the Gentoo RC System
|
| 6 |
#
|
| 7 |
|
| 8 |
# This is the number of tty's used in most of the rc-scripts (like
|
| 9 |
# consolefont, numlock, etc ...)
|
| 10 |
|
| 11 |
RC_TTY_NUMBER=11
|
| 12 |
|
| 13 |
# Set to "yes" if you want the rc system to try and start services
|
| 14 |
# in parallel for a slight speed improvement.
|
| 15 |
|
| 16 |
RC_PARALLEL_STARTUP="no"
|
| 17 |
|
| 18 |
# Set to "yes" if you require a net.* service running (other than
|
| 19 |
# just net.lo) to satisfy the generic 'net' dependency
|
| 20 |
|
| 21 |
RC_NET_STRICT_CHECKING="no"
|
| 22 |
|
| 23 |
# Use this variable to control the /dev management behavior.
|
| 24 |
# auto - let the scripts figure out what's best at boot
|
| 25 |
# devfs - use devfs (requires sys-fs/devfsd)
|
| 26 |
# udev - use udev (requires sys-fs/udev)
|
| 27 |
# static - let the user manage static nodes
|
| 28 |
|
| 29 |
RC_DEVICES="auto"
|
| 30 |
|
| 31 |
# Set to "yes" if you want to save /dev to a tarball on shutdown
|
| 32 |
# and restore it on startup. This is useful if you have a lot of
|
| 33 |
# custom device nodes that udev does not handle/know about.
|
| 34 |
# (ONLY used by UDEV enabled systems!)
|
| 35 |
|
| 36 |
RC_DEVICE_TARBALL="yes"
|
| 37 |
|
| 38 |
|
| 39 |
|
| 40 |
|
| 41 |
|
| 42 |
#
|
| 43 |
# Controlling start-stop-daemon behavior
|
| 44 |
#
|
| 45 |
# NOTE: most of these are not in use yet!!
|
| 46 |
#
|
| 47 |
|
| 48 |
# Set to "yes" if stop-daemon() should always retry killing the
|
| 49 |
# service if it fails the first time.
|
| 50 |
|
| 51 |
RC_RETRY_KILL="yes"
|
| 52 |
|
| 53 |
|
| 54 |
# Set the amount of seconds stop-daemon() should wait between
|
| 55 |
# retries. $RC_RETRY_KILL should be set to "yes".
|
| 56 |
|
| 57 |
RC_RETRY_TIMEOUT=1
|
| 58 |
|
| 59 |
|
| 60 |
# Set the amount of times stop-daemon() should try to kill
|
| 61 |
# a service before giving up. $RC_RETRY_KILL should be set to "yes".
|
| 62 |
|
| 63 |
RC_RETRY_COUNT=5
|
| 64 |
|
| 65 |
|
| 66 |
# Set to "yes" if stop-daemon() should fail if the service
|
| 67 |
# is marked as started, but not actually running on stop.
|
| 68 |
|
| 69 |
RC_FAIL_ON_ZOMBIE="no"
|
| 70 |
|
| 71 |
|
| 72 |
|
| 73 |
|
| 74 |
|
| 75 |
#
|
| 76 |
# Internal configuration variables
|
| 77 |
#
|
| 78 |
# NB: These are for advanced users, and you should really
|
| 79 |
# know what you are doing before changing them!
|
| 80 |
#
|
| 81 |
|
| 82 |
|
| 83 |
# rc-scripts dep-cache directory
|
| 84 |
#
|
| 85 |
# NOTE: Do not remove the next line, as its needed by the baselayout ebuild!
|
| 86 |
#
|
| 87 |
# svcdir="/var/lib/init.d"
|
| 88 |
|
| 89 |
svcdir="/var/lib/init.d"
|
| 90 |
|
| 91 |
|
| 92 |
# Should we mount $svcdir in a ram disk for some speed increase
|
| 93 |
# for slower machines, or for the more extreme setups ?
|
| 94 |
|
| 95 |
svcmount="no"
|
| 96 |
|
| 97 |
|
| 98 |
# FS type that should be used for $svcdir. Note that you need
|
| 99 |
# $svcmount above set to "yes" for this to work ... Currently
|
| 100 |
# tmpfs, ramfs, and ramdisk are supported (tmpfs is the default).
|
| 101 |
|
| 102 |
svcfstype="tmpfs"
|
| 103 |
|
| 104 |
|
| 105 |
# Size of $svcdir in KB
|
| 106 |
|
| 107 |
svcsize=2048
|