Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.03 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 it's 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="NO"
  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.
  15. rc_interactive="YES"
  16.  
  17. # Do we allow any started service in the runlevel to satisfy the depedency
  18. # or do we want all of them regardless of state? For example, if net.eth0
  19. # and net.eth1 are in the default runlevel then with rc_depend_strict="NO"
  20. # both will be started, but services that depend on 'net' will work if either
  21. # one comes up. With rc_depend_strict="YES" we would require them both to
  22. # come up.
  23. rc_depend_strict="YES"
  24.  
  25. # rc_hotplug is a list of services that we allow to be hotplugged.
  26. # By default we do not allow hotplugging.
  27. # A hotplugged service is one started by a dynamic dev manager when a matching
  28. # hardware device is found.
  29. # This service is intrinsically included in the boot runlevel.
  30. # To disable services, prefix with a !
  31. # Example - rc_hotplug="net.wlan !net.*"
  32. # This allows net.wlan and any service not matching net.* to be plugged.
  33. # Example - rc_hotplug="*"
  34. # This allows all services to be hotplugged
  35. #rc_hotplug="*"
  36.  
  37. # rc_logger launches a logging daemon to log the entire rc process to
  38. # /var/log/rc.log
  39. # NOTE: Linux systems require the devfs service to be started before
  40. # logging can take place and as such cannot log the sysinit runlevel.
  41. rc_logger="NO"
  42.  
  43. # By default we filter the environment for our running scripts. To allow other
  44. # variables through, add them here. Use a * to allow all variables through.
  45. # rc_env_allow="VAR1 VAR2"
  46.  
  47. # By default we assume that all daemons will start correctly.
  48. # However, some do not - a classic example is that they fork and return 0 AND
  49. # then child barfs on a configuration error. Or the daemon has a bug and the
  50. # child crashes. You can set the number of milliseconds start-stop-daemon
  51. # waits to check that the daemon is still running after starting here.
  52. # The default is 0 - no checking.
  53. # rc_start_wait=100
  54.  
  55. ##############################################################################
  56. # MISC CONFIGURATION VARIABLES
  57. # There variables are shared between many init scripts
  58.  
  59. # Set unicode to YES to turn on unicode support for keyboards and screens.
  60. unicode="YES"
  61.  
  62. # Network fstypes. Below is the default.
  63. net_fs_list="afs cifs coda davfs fuse gfs ncpfs nfs nfs4 ocfs2 shfs smbfs"
  64.  
  65. ##############################################################################
  66. # SERVICE CONFIGURATION VARIABLES
  67. # These variables are documented here, but should be configured in
  68. # /etc/conf.d/foo for service foo and NOT enabled here unless you
  69. # really want them to work on a global basis.
  70.  
  71. # Some daemons are started and stopped via start-stop-daemon.
  72. # We can set some things on a per service basis, like the nicelevel.
  73. #export SSD_NICELEVEL="-19"
  74.  
  75. # Pass ulimit parameters
  76. #rc_ulimit="-u 30"
  77.  
  78. # It's possible to define extra dependencies for services like so
  79. #rc_config="/etc/foo"
  80. #rc_need="openvpn"
  81. #rc_use="net.eth0"
  82. #rc_after="clock"
  83. #rc_before="local"
  84. #rc_provide="!net"
  85.  
  86. # You can also enable the above commands here for each service. Below is an
  87. # example for service foo.
  88. #rc_foo_config="/etc/foo"
  89. #rc_foo_need="openvpn"
  90. #rc_foo_after="clock"
  91.  
  92. # You can also remove dependencies.
  93. # This is mainly used for saying which servies do NOT provide net.
  94. #rc_net_tap0_provide="!net"
  95.  
  96. ##############################################################################
  97. # LINUX SPECIFIC OPTIONS
  98.  
  99. # This is the number of tty's used in most of the rc-scripts (like
  100. # consolefont, numlock, etc ...)
  101. rc_tty_number=12
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement