Advertisement
Guest User

rc.conf

a guest
Aug 30th, 2021
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 12.37 KB | None | 0 0
  1. # Global OpenRC configuration settings
  2.  
  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"
  11.  
  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"
  17.  
  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
  23.  
  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"
  31.  
  32. # rc_hotplug controls which services we allow to be hotplugged.
  33. # A hotplugged service is one started by a dynamic dev manager when a matching
  34. # hardware device is found.
  35. # Hotplugged services appear in the "hotplugged" runlevel.
  36. # If rc_hotplug is set to any value, we compare the name of this service
  37. # to every pattern in the value, from left to right, and we allow the
  38. # service to be hotplugged if it matches a pattern, or if it matches no
  39. # patterns. Patterns can include shell wildcards.
  40. # To disable services from being hotplugged, prefix patterns with "!".
  41. #If rc_hotplug is not set or is empty, all hotplugging is disabled.
  42. # Example - rc_hotplug="net.wlan !net.*"
  43. # This allows net.wlan and any service not matching net.* to be hotplugged.
  44. # Example - rc_hotplug="!net.*"
  45. # This allows services that do not match "net.*" to be hotplugged.
  46.  
  47. # rc_logger launches a logging daemon to log the entire rc process to
  48. # /var/log/rc.log
  49. # NOTE: Linux systems require the devfs service to be started before
  50. # logging can take place and as such cannot log the sysinit runlevel.
  51. rc_logger="YES"
  52.  
  53. # Through rc_log_path you can specify a custom log file.
  54. # The default value is: /var/log/rc.log
  55. #rc_log_path="/var/log/rc.log"
  56.  
  57. # If you want verbose output for OpenRC, set this to yes. If you want
  58. # verbose output for service foo only, set it to yes in /etc/conf.d/foo.
  59. #rc_verbose=no
  60.  
  61. # By default we filter the environment for our running scripts. To allow other
  62. # variables through, add them here. Use a * to allow all variables through.
  63. #rc_env_allow="VAR1 VAR2"
  64.  
  65. # By default we assume that all daemons will start correctly.
  66. # However, some do not - a classic example is that they fork and return 0 AND
  67. # then child barfs on a configuration error. Or the daemon has a bug and the
  68. # child crashes. You can set the number of milliseconds start-stop-daemon
  69. # waits to check that the daemon is still running after starting here.
  70. # The default is 0 - no checking.
  71. #rc_start_wait=100
  72.  
  73. # rc_nostop is a list of services which will not stop when changing runlevels.
  74. # This still allows the service itself to be stopped when called directly.
  75. #rc_nostop=""
  76.  
  77. # rc will attempt to start crashed services by default.
  78. # However, it will not stop them by default as that could bring down other
  79. # critical services.
  80. #rc_crashed_stop=NO
  81. #rc_crashed_start=YES
  82.  
  83. # Set rc_nocolor to yes if you do not want colors displayed in OpenRC
  84. # output.
  85. #rc_nocolor=NO
  86.  
  87. ##############################################################################
  88. # MISC CONFIGURATION VARIABLES
  89. # There variables are shared between many init scripts
  90.  
  91. # Set unicode to YES to turn on unicode support for keyboards and screens.
  92. unicode="YES"
  93.  
  94. # This is how long fuser should wait for a remote server to respond. The
  95. # default is 60 seconds, but  it can be adjusted here.
  96. #rc_fuser_timeout=60
  97.  
  98. # Below is the default list of network fstypes.
  99. #
  100. # afs ceph cifs coda davfs fuse fuse.sshfs gfs glusterfs lustre ncpfs
  101. # nfs nfs4 ocfs2 shfs smbfs
  102. #
  103. # If you would like to add to this list, you can do so by adding your
  104. # own fstypes to the following variable.
  105. #extra_net_fs_list=""
  106.  
  107. ##############################################################################
  108. # SERVICE CONFIGURATION VARIABLES
  109. # These variables are documented here, but should be configured in
  110. # /etc/conf.d/foo for service foo and NOT enabled here unless you
  111. # really want them to work on a global basis.
  112. # If your service has characters in its name which are not legal in
  113. # shell variable names and you configure the variables for it in this
  114. # file, those characters should be replaced with underscores in the
  115. # variable names as shown below.
  116.  
  117. # Some daemons are started and stopped via start-stop-daemon.
  118. # We can set some things on a per service basis, like the nicelevel.
  119. #SSD_NICELEVEL="-19"
  120. # Or the ionice level. The format is class[:data] , just like the
  121. # --ionice start-stop-daemon parameter.
  122. #SSD_IONICELEVEL="2:2"
  123.  
  124. # Pass ulimit parameters
  125. # If you are using bash in POSIX mode for your shell, note that the
  126. # ulimit command uses a block size of 512 bytes for the -c and -f
  127. # options
  128. #rc_ulimit="-u 30"
  129.  
  130. # It's possible to define extra dependencies for services like so
  131. #rc_config="/etc/foo"
  132. rc_need="dmcrypt"
  133. #rc_use="net.eth0"
  134. #rc_after="clock"
  135. #rc_before="local"
  136. #rc_provide="!net"
  137.  
  138. # You can also enable the above commands here for each service. Below is an
  139. # example for service foo.
  140. #rc_foo_config="/etc/foo"
  141. #rc_foo_need="openvpn"
  142. #rc_foo_after="clock"
  143.  
  144. # Below is an example for service foo-bar. Note that the '-' is illegal
  145. # in a shell variable name, so we convert it to an underscore.
  146. # example for service foo-bar.
  147. #rc_foo_bar_config="/etc/foo-bar"
  148. #rc_foo_bar_need="openvpn"
  149. #rc_foo_bar_after="clock"
  150.  
  151. # You can also remove dependencies.
  152. # This is mainly used for saying which services do NOT provide net.
  153. #rc_net_tap0_provide="!net"
  154.  
  155. # This is the subsystem type.
  156. # It is used to match against keywords set by the keyword call in the
  157. # depend function of service scripts.
  158. #
  159. # It should be set to the value representing the environment this file is
  160. # PRESENTLY in, not the virtualization the environment is capable of.
  161. # If it is commented out, automatic detection will be used.
  162. #
  163. # The list below shows all possible settings as well as the host
  164. # operating systems where they can be used and autodetected.
  165. #
  166. # ""               - nothing special
  167. # "docker"         - Docker container manager (Linux)
  168. # "jail"           - Jail (DragonflyBSD or FreeBSD)
  169. # "lxc"            - Linux Containers
  170. # "openvz"         - Linux OpenVZ
  171. # "prefix"         - Prefix
  172. # "rkt"            - CoreOS container management system (Linux)
  173. # "subhurd"        - Hurd subhurds (to be checked)
  174. # "systemd-nspawn" - Container created by systemd-nspawn (Linux)
  175. # "uml"            - Usermode Linux
  176. # "vserver"        - Linux vserver
  177. # "xen0"           - Xen0 Domain (Linux and NetBSD)
  178. # "xenU"           - XenU Domain (Linux and NetBSD)
  179. #rc_sys=""
  180.  
  181. # if  you use openrc-init, which is currently only available on Linux,
  182. # this is the default runlevel to activate after "sysinit" and "boot"
  183. # when booting.
  184. #rc_default_runlevel="default"
  185.  
  186. # on Linux and Hurd, this is the number of ttys allocated for logins
  187. # It is used in the consolefont, keymaps, numlock and termencoding
  188. # service scripts.
  189. rc_tty_number=12
  190.  
  191. ##############################################################################
  192. # LINUX CGROUPS RESOURCE MANAGEMENT
  193.  
  194. # This sets the mode used to mount cgroups.
  195. # "hybrid" mounts cgroups version 2 on /sys/fs/cgroup/unified and
  196. # cgroups version 1 on /sys/fs/cgroup.
  197. # "legacy" mounts cgroups version 1 on /sys/fs/cgroup
  198. # "unified" mounts cgroups version 2 on /sys/fs/cgroup
  199. #rc_cgroup_mode="hybrid"
  200.  
  201. # This is a list of controllers which should be enabled for cgroups version 2
  202. # when hybrid mode is being used.
  203. # Controllers listed here will not be available for cgroups version 1.
  204. #rc_cgroup_controllers=""
  205.  
  206. # This variable contains the cgroups version 2 settings for your services.
  207. # If this is set in this file, the settings will apply to all services.
  208. # If you want different settings for each service, place the settings in
  209. # /etc/conf.d/foo for service foo.
  210. # The format is to specify the setting and value followed by a newline.
  211. # Multiple settings and values can be specified.
  212. # For example, you would use this to set the maximum memory and maximum
  213. # number of pids for a service.
  214. #rc_cgroup_settings="
  215. #memory.max 10485760
  216. #pids.max max
  217. #"
  218. #
  219. # For more information about the adjustments that can be made with
  220. # cgroups version 2, see Documentation/cgroups-v2.txt in the linux kernel
  221. # source tree.
  222. #rc_cgroup_settings=""
  223.  
  224. # This switch controls whether or not cgroups version 1 controllers are
  225. # individually mounted under
  226. # /sys/fs/cgroup in hybrid or legacy mode.
  227. #rc_controller_cgroups="YES"
  228.  
  229. # The following setting turns on the memory.use_hierarchy setting in the
  230. # root memory cgroup for cgroups v1.
  231. # It must be set to yes in this file if you want this functionality.
  232. #rc_cgroup_memory_use_hierarchy="NO"
  233.  
  234. # The following settings allow you to set up values for the cgroups version 1
  235. # controllers for your services.
  236. # They can be set in this file;, however, if you do this, the settings
  237. # will apply to all of your services.
  238. # If you want different settings for each service, place the settings in
  239. # /etc/conf.d/foo for service foo.
  240. # The format is to specify the names of the settings followed by their
  241. # values. Each variable can hold multiple settings.
  242. # For example, you would use this to set the cpu.shares setting in the
  243. # cpu controller to 512 for your service.
  244. # rc_cgroup_cpu="
  245. # cpu.shares 512
  246. # "
  247. #
  248. # For more information about the adjustments that can be made with
  249. # cgroups version 1, see Documentation/cgroups-v1/* in the linux kernel
  250. # source tree.
  251.  
  252. # Set the blkio controller settings for this service.
  253. #rc_cgroup_blkio=""
  254.  
  255. # Set the cpu controller settings for this service.
  256. #rc_cgroup_cpu=""
  257.  
  258. # Add this service to the cpuacct controller (any value means yes).
  259. #rc_cgroup_cpuacct=""
  260.  
  261. # Set the cpuset controller settings for this service.
  262. #rc_cgroup_cpuset=""
  263.  
  264. # Set the devices controller settings for this service.
  265. #rc_cgroup_devices=""
  266.  
  267. # Set the hugetlb controller settings for this service.
  268. #rc_cgroup_hugetlb=""
  269.  
  270. # Set the memory controller settings for this service.
  271. #rc_cgroup_memory=""
  272.  
  273. # Set the net_cls controller settings for this service.
  274. #rc_cgroup_net_cls=""
  275.  
  276. # Set the net_prio controller settings for this service.
  277. #rc_cgroup_net_prio=""
  278.  
  279. # Set the pids controller settings for this service.
  280. #rc_cgroup_pids=""
  281.  
  282. # Set this to YES if you want all of the processes in a service's cgroup
  283. # killed when the service is stopped or restarted.
  284. # Be aware that setting this to yes means all of a service's
  285. # child processes will be killed. Keep this in mind if you set this to
  286. # yes here instead of for the individual services in
  287. # /etc/conf.d/<service>.
  288. # To perform this cleanup manually for a stopped service, you can
  289. # execute cgroup_cleanup with /etc/init.d/<service> cgroup_cleanup or
  290. # rc-service <service> cgroup_cleanup.
  291. # The process followed in this cleanup is the following:
  292. # 1. send stopsig (sigterm if it isn't set) to all processes left in the
  293. # cgroup immediately followed by sigcont.
  294. # 2. Send sighup to all processes in the cgroup if rc_send_sighup is
  295. # yes.
  296. # 3. delay for rc_timeout_stopsec seconds.
  297. # 4. send sigkill to all processes in the cgroup unless disabled by
  298. # setting rc_send_sigkill to no.
  299. # rc_cgroup_cleanup="NO"
  300.  
  301. # If this is yes, we will send sighup to the processes in the cgroup
  302. # immediately after stopsig and sigcont.
  303. #rc_send_sighup="NO"
  304.  
  305. # This is the amount of time in seconds that we delay after sending sigcont
  306. # and optionally sighup, before we optionally send sigkill to all
  307. # processes in the # cgroup.
  308. # The default is 90 seconds.
  309. #rc_timeout_stopsec="90"
  310.  
  311. # If this is set to no, we do not send sigkill to all processes in the
  312. # cgroup.
  313. #rc_send_sigkill="YES"
  314.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement