Update documentation for services-systemd module

This commit is contained in:
dalto 2021-10-28 07:33:32 -05:00
parent a1699e28a2
commit 96f3de12b3

View File

@ -3,17 +3,17 @@
# #
# Systemd services manipulation. # Systemd services manipulation.
# #
# This module can enable services and targets for systemd # This module can enable services, timers and targets for systemd
# (if packaging doesn't already do that). It can calso # (if packaging doesn't already do that). It can also
# disable services (but not targets). # disable services and targets as well as mask units.
# #
# First, services are enabled; then targets; then services # The order of operations is fixed. Enable services, enable targets,
# are disabled -- this order of operations is fixed. # enable timers, disable services, disable targets and finally apply masks.
--- ---
# There are three configuration keys for this module: # There are several configuration keys for this module:
# *services*, *targets* and *disable*. The value of each # *services*, *targets*, *timers*, *disable*, *disable-targets* and *mask*.
# key is a list of entries. Each entry has two keys: # The value of each key is a list of entries. Each entry has two keys:
# - *name* is the (string) name of the service or target that is being # - *name* is the (string) name of the service or target that is being
# changed. Use quotes. Don't include ".target" or ".service" # changed. Use quotes. Don't include ".target" or ".service"
# in the name. # in the name.