2018-06-27 15:11:51 +02:00
|
|
|
# openrc services module to modify service runlevels via rc-update in the chroot
|
|
|
|
#
|
|
|
|
# Services can be added (to any runlevel, or multiple runlevels) or deleted.
|
|
|
|
# Handle del with care and only use it if absolutely necessary.
|
|
|
|
#
|
|
|
|
# if a service is listed in the conf but is not present/detected on the target system,
|
|
|
|
# or a runlevel does not exist, it will be ignored and skipped; a warning is logged.
|
|
|
|
#
|
|
|
|
---
|
|
|
|
# initdDir: holds the openrc service directory location
|
|
|
|
initdDir: /etc/init.d
|
|
|
|
|
|
|
|
# runlevelsDir: holds the runlevels directory location
|
|
|
|
runlevelsDir: /etc/runlevels
|
|
|
|
|
2018-06-27 15:46:43 +02:00
|
|
|
# services: a list of entries to **enable**
|
|
|
|
# disable: a list of entries to **disable**
|
|
|
|
#
|
|
|
|
# Each entry has two fields:
|
2018-06-27 15:11:51 +02:00
|
|
|
# - name: the service name
|
2018-06-27 15:33:02 +02:00
|
|
|
# - runlevel: can hold any runlevel present on the target system;
|
|
|
|
# if no runlevel is provided, "default" is assumed.
|
2018-06-27 15:11:51 +02:00
|
|
|
#
|
2018-06-27 15:46:43 +02:00
|
|
|
# # Example services and disable settings:
|
2018-06-27 15:33:02 +02:00
|
|
|
# # - add foo1 to default
|
|
|
|
# # - add foo2 to nonetwork
|
|
|
|
# # - remove foo3 from default
|
2018-06-27 15:11:51 +02:00
|
|
|
# services:
|
2018-06-27 15:46:43 +02:00
|
|
|
# - name: foo1
|
|
|
|
# - name: foo2
|
|
|
|
# runlevel: nonetwork
|
|
|
|
# disable:
|
|
|
|
# - name: foo3
|
|
|
|
# runlevel: default
|
2018-06-27 15:11:51 +02:00
|
|
|
services: []
|
2018-06-27 15:46:43 +02:00
|
|
|
disable: []
|
2018-06-27 15:11:51 +02:00
|
|
|
|