savara - customs
[anomen-kernel-config.git] / savara / customs / etc / rc.conf
blob442b6d7fe85c08b5f06d57c847f53af6c450cc0e
1 # Global OpenRC configuration settings
3 # Set to "YES" if you want the rc system to try and start services
4 # in parallel for a slight speed improvement. When running in parallel we
5 # prefix the service output with its name as the output will get
6 # jumbled up.
7 # WARNING: whilst we have improved parallel, it can still potentially lock
8 # the boot process. Don't file bugs about this unless you can supply
9 # patches that fix it without breaking other things!
10 rc_parallel="YES"
12 # Set rc_interactive to "YES" and you'll be able to press the I key during
13 # boot so you can choose to start specific services. Set to "NO" to disable
14 # this feature. This feature is automatically disabled if rc_parallel is
15 # set to YES.
16 #rc_interactive="YES"
18 # If we need to drop to a shell, you can specify it here.
19 # If not specified we use $SHELL, otherwise the one specified in /etc/passwd,
20 # otherwise /bin/sh
21 # Linux users could specify /sbin/sulogin
22 rc_shell=/sbin/sulogin
24 # Do we allow any started service in the runlevel to satisfy the dependency
25 # or do we want all of them regardless of state? For example, if net.eth0
26 # and net.eth1 are in the default runlevel then with rc_depend_strict="NO"
27 # both will be started, but services that depend on 'net' will work if either
28 # one comes up. With rc_depend_strict="YES" we would require them both to
29 # come up.
30 #rc_depend_strict="YES"
32 # rc_hotplug is a list of services that we allow to be hotplugged.
33 # By default we do not allow hotplugging.
34 # A hotplugged service is one started by a dynamic dev manager when a matching
35 # hardware device is found.
36 # This service is intrinsically included in the boot runlevel.
37 # To disable services, prefix with a !
38 # Example - rc_hotplug="net.wlan !net.*"
39 # This allows net.wlan and any service not matching net.* to be plugged.
40 # Example - rc_hotplug="*"
41 # This allows all services to be hotplugged
42 #rc_hotplug="*"
44 # rc_logger launches a logging daemon to log the entire rc process to
45 # /var/log/rc.log
46 # NOTE: Linux systems require the devfs service to be started before
47 # logging can take place and as such cannot log the sysinit runlevel.
48 #rc_logger="YES"
50 # Through rc_log_path you can specify a custom log file.
51 # The default value is: /var/log/rc.log
52 #rc_log_path="/var/log/rc.log"
54 # By default we filter the environment for our running scripts. To allow other
55 # variables through, add them here. Use a * to allow all variables through.
56 #rc_env_allow="VAR1 VAR2"
58 # By default we assume that all daemons will start correctly.
59 # However, some do not - a classic example is that they fork and return 0 AND
60 # then child barfs on a configuration error. Or the daemon has a bug and the
61 # child crashes. You can set the number of milliseconds start-stop-daemon
62 # waits to check that the daemon is still running after starting here.
63 # The default is 0 - no checking.
64 #rc_start_wait=100
66 # rc_nostop is a list of services which will not stop when changing runlevels.
67 # This still allows the service itself to be stopped when called directly.
68 #rc_nostop=""
70 # rc will attempt to start crashed services by default.
71 # However, it will not stop them by default as that could bring down other
72 # critical services.
73 #rc_crashed_stop=NO
74 #rc_crashed_start=YES
76 ##############################################################################
77 # MISC CONFIGURATION VARIABLES
78 # There variables are shared between many init scripts
80 # Set unicode to YES to turn on unicode support for keyboards and screens.
81 unicode="YES"
83 # Below is the default list of network fstypes.
85 # afs cifs coda davfs fuse fuse.sshfs gfs glusterfs lustre ncpfs
86 # nfs nfs4 ocfs2 shfs smbfs
88 # If you would like to add to this list, you can do so by adding your
89 # own fstypes to the following variable.
90 #extra_net_fs_list=""
92 ##############################################################################
93 # SERVICE CONFIGURATION VARIABLES
94 # These variables are documented here, but should be configured in
95 # /etc/conf.d/foo for service foo and NOT enabled here unless you
96 # really want them to work on a global basis.
97 # If your service has characters in its name which are not legal in
98 # shell variable names and you configure the variables for it in this
99 # file, those characters should be replaced with underscores in the
100 # variable names as shown below.
102 # Some daemons are started and stopped via start-stop-daemon.
103 # We can set some things on a per service basis, like the nicelevel.
104 #export SSD_NICELEVEL="-19"
106 # Pass ulimit parameters
107 #rc_ulimit="-u 30"
109 # It's possible to define extra dependencies for services like so
110 #rc_config="/etc/foo"
111 #rc_need="openvpn"
112 #rc_use="net.eth0"
113 #rc_after="clock"
114 #rc_before="local"
115 #rc_provide="!net"
117 # You can also enable the above commands here for each service. Below is an
118 # example for service foo.
119 #rc_foo_config="/etc/foo"
120 #rc_foo_need="openvpn"
121 #rc_foo_after="clock"
123 # Below is an example for service foo-bar. Note that the '-' is illegal
124 # in a shell variable name, so we convert it to an underscore.
125 # example for service foo-bar.
126 #rc_foo_bar_config="/etc/foo-bar"
127 #rc_foo_bar_need="openvpn"
128 #rc_foo_bar_after="clock"
130 # You can also remove dependencies.
131 # This is mainly used for saying which servies do NOT provide net.
132 #rc_net_tap0_provide="!net"
134 ##############################################################################
135 # LINUX SPECIFIC OPTIONS
137 # This is the subsystem type. Valid options on Linux:
138 # ""        - nothing special
139 # "lxc"     - Linux Containers
140 # "openvz"  - Linux OpenVZ
141 # "prefix"  - Prefix
142 # "uml"     - Usermode Linux
143 # "vserver" - Linux vserver
144 # "xen0"    - Xen0 Domain
145 # "xenU"    - XenU Domain
146 # If this is commented out, automatic detection will be used.
148 # This should be set to the value representing the environment this file is
149 # PRESENTLY in, not the virtualization the environment is capable of.
150 rc_sys=""
152 # This is the number of tty's used in most of the rc-scripts (like
153 # consolefont, numlock, etc ...)
154 rc_tty_number=12
156 # If you have cgroups turned on in your kernel, this switch controls
157 # whether or not a group for each controler is mounted under
158 # /sys/fs/cgroup.
159 # Support for process management by cgroups is planned in the future,
160 # so if you turn this off, be aware that you may not be able to use that
161 # feature.
162 #rc_controller_cgroups="YES"