Advertisement
Guest User

Untitled

a guest
Sep 17th, 2012
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.07 KB | None | 0 0
  1. # Global OpenRC configuration settings
  2.  
  3. # Set rc_interactive to "YES" and you'll be able to press the I key during
  4. # boot so you can choose to start specific services. Set to "NO" to disable
  5. # this feature.
  6. #rc_interactive="YES"
  7.  
  8. # If we need to drop to a shell, you can specify it here.
  9. # If not specified we use $SHELL, otherwise the one specified in /etc/passwd,
  10. # otherwise /bin/sh
  11. # Linux users could specify /sbin/sulogin
  12. rc_shell=/sbin/sulogin
  13.  
  14. # Do we allow any started service in the runlevel to satisfy the dependency
  15. # or do we want all of them regardless of state? For example, if net.eth0
  16. # and net.eth1 are in the default runlevel then with rc_depend_strict="NO"
  17. # both will be started, but services that depend on 'net' will work if either
  18. # one comes up. With rc_depend_strict="YES" we would require them both to
  19. # come up.
  20. #rc_depend_strict="YES"
  21.  
  22. # rc_hotplug is a list of services that we allow to be hotplugged.
  23. # By default we do not allow hotplugging.
  24. # A hotplugged service is one started by a dynamic dev manager when a matching
  25. # hardware device is found.
  26. # This service is intrinsically included in the boot runlevel.
  27. # To disable services, prefix with a !
  28. # Example - rc_hotplug="net.wlan !net.*"
  29. # This allows net.wlan and any service not matching net.* to be plugged.
  30. # Example - rc_hotplug="*"
  31. # This allows all services to be hotplugged
  32. #rc_hotplug="*"
  33.  
  34. # rc_logger launches a logging daemon to log the entire rc process to
  35. # /var/log/rc.log
  36. # NOTE: Linux systems require the devfs service to be started before
  37. # logging can take place and as such cannot log the sysinit runlevel.
  38. rc_logger="YES"
  39.  
  40. # Through rc_log_path you can specify a custom log file.
  41. # The default value is: /var/log/rc.log
  42. #rc_log_path="/var/log/rc.log"
  43.  
  44. # By default we filter the environment for our running scripts. To allow other
  45. # variables through, add them here. Use a * to allow all variables through.
  46. #rc_env_allow="VAR1 VAR2"
  47.  
  48. # By default we assume that all daemons will start correctly.
  49. # However, some do not - a classic example is that they fork and return 0 AND
  50. # then child barfs on a configuration error. Or the daemon has a bug and the
  51. # child crashes. You can set the number of milliseconds start-stop-daemon
  52. # waits to check that the daemon is still running after starting here.
  53. # The default is 0 - no checking.
  54. #rc_start_wait=100
  55.  
  56. # rc_nostop is a list of services which will not stop when changing runlevels.
  57. # This still allows the service itself to be stopped when called directly.
  58. #rc_nostop=""
  59.  
  60. # rc will attempt to start crashed services by default.
  61. # However, it will not stop them by default as that could bring down other
  62. # critical services.
  63. #rc_crashed_stop=NO
  64. rc_crashed_start=YES
  65.  
  66. ##############################################################################
  67. # MISC CONFIGURATION VARIABLES
  68. # There variables are shared between many init scripts
  69.  
  70. # Set unicode to YES to turn on unicode support for keyboards and screens.
  71. unicode="YES"
  72.  
  73. # Below is the default list of network fstypes.
  74. #
  75. # afs cifs coda davfs fuse fuse.sshfs gfs glusterfs lustre ncpfs
  76. # nfs nfs4 ocfs2 shfs smbfs
  77. #
  78. # If you would like to add to this list, you can do so by adding your
  79. # own fstypes to the following variable.
  80. #extra_net_fs_list=""
  81.  
  82. ##############################################################################
  83. # SERVICE CONFIGURATION VARIABLES
  84. # These variables are documented here, but should be configured in
  85. # /etc/conf.d/foo for service foo and NOT enabled here unless you
  86. # really want them to work on a global basis.
  87.  
  88. # Some daemons are started and stopped via start-stop-daemon.
  89. # We can set some things on a per service basis, like the nicelevel.
  90. #export SSD_NICELEVEL="-19"
  91.  
  92. # Pass ulimit parameters
  93. #rc_ulimit="-u 30"
  94.  
  95. # It's possible to define extra dependencies for services like so
  96. #rc_config="/etc/foo"
  97. #rc_need="openvpn"
  98. #rc_use="net.eth0"
  99. #rc_after="clock"
  100. #rc_before="local"
  101. #rc_provide="!net"
  102.  
  103. # You can also enable the above commands here for each service. Below is an
  104. # example for service foo.
  105. #rc_foo_config="/etc/foo"
  106. #rc_foo_need="openvpn"
  107. #rc_foo_after="clock"
  108.  
  109. # You can also remove dependencies.
  110. # This is mainly used for saying which servies do NOT provide net.
  111. #rc_net_tap0_provide="!net"
  112.  
  113. ##############################################################################
  114. # LINUX SPECIFIC OPTIONS
  115.  
  116. # This is the subsystem type. Valid options on Linux:
  117. # "" - nothing special
  118. # "lxc" - Linux Containers
  119. # "openvz" - Linux OpenVZ
  120. # "prefix" - Prefix
  121. # "uml" - Usermode Linux
  122. # "vserver" - Linux vserver
  123. # "xen0" - Xen0 Domain
  124. # "xenU" - XenU Domain
  125. # If this is commented out, automatic detection will be attempted.
  126. # Note that autodetection will not work in a prefix environment or in a
  127. # linux container.
  128. #
  129. # This should be set to the value representing the environment this file is
  130. # PRESENTLY in, not the virtualization the environment is capable of.
  131. #rc_sys=""
  132.  
  133. # This is the number of tty's used in most of the rc-scripts (like
  134. # consolefont, numlock, etc ...)
  135. rc_tty_number=12
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement