calamares/src/modules/services-systemd/services-systemd.conf

46 lines
1.4 KiB
Plaintext
Raw Normal View History

# Systemd services manipulation.
#
# This module can enable services and targets for systemd
# (if packaging doesn't already do that). It can calso
# disable services (but not targets).
#
# First, services are enabled; then targets; then services
# are disabled -- this order of operations is fixed.
2014-08-11 15:13:28 +02:00
---
# There are three configuration keys for this module:
# *services*, *targets* and *disable*. 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
# changed. Use quotes.
# - *mandatory* is a boolean option, which states whether the change
# must be done successfully. If systemd reports an error while changing
# a mandatory entry, the installation will fail. When mandatory is false,
# errors for that entry (service or target) are ignored.
#
# Use [] to express an empty list.
2014-08-11 15:13:28 +02:00
# # This example enables NetworkManager (and fails if it can't),
# # disables cups (and ignores failure). Then it enables the
# # graphical target (e.g. so that SDDM runs for login), and
# # finally disables pacman-init (an ArchLinux-only service).
# #
# services:
# - name: "NetworkManager"
# mandatory: true
# - name: "cups"
# mandatory: false
#
# targets:
# - name: "graphical"
# mandatory: true
#
# disable:
# - name: "pacman-init"
# mandatory: false
2015-08-31 16:52:02 +02:00
# By default, no changes are made.
services: []
targets: []
disable: []