From 2bf805edfc75af0c9f7c0209845e00286a032f05 Mon Sep 17 00:00:00 2001 From: hayao Date: Tue, 25 May 2021 20:37:16 +0900 Subject: [PATCH] [remove] : Removed x86_64 service configs --- .../share/calamares/modules/services-plymouth.conf | 114 --------------------- .../usr/share/calamares/modules/services.conf | 114 --------------------- .../share/calamares/modules/services-plymouth.conf | 114 --------------------- .../usr/share/calamares/modules/services.conf | 114 --------------------- .../share/calamares/modules/services-plymouth.conf | 114 --------------------- .../usr/share/calamares/modules/services.conf | 114 --------------------- .../share/calamares/modules/services-plymouth.conf | 114 --------------------- .../usr/share/calamares/modules/services.conf | 114 --------------------- .../share/calamares/modules/services-plymouth.conf | 114 --------------------- .../usr/share/calamares/modules/services.conf | 114 --------------------- 10 files changed, 1140 deletions(-) delete mode 100644 channels/cinnamon/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf delete mode 100644 channels/cinnamon/airootfs.x86_64/usr/share/calamares/modules/services.conf delete mode 100644 channels/lxde/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf delete mode 100644 channels/lxde/airootfs.x86_64/usr/share/calamares/modules/services.conf delete mode 100644 channels/serene/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf delete mode 100644 channels/serene/airootfs.x86_64/usr/share/calamares/modules/services.conf delete mode 100644 channels/xfce-pro/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf delete mode 100644 channels/xfce-pro/airootfs.x86_64/usr/share/calamares/modules/services.conf delete mode 100644 channels/xfce/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf delete mode 100644 channels/xfce/airootfs.x86_64/usr/share/calamares/modules/services.conf diff --git a/channels/cinnamon/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf b/channels/cinnamon/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf deleted file mode 100644 index 8bacf641..00000000 --- a/channels/cinnamon/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf +++ /dev/null @@ -1,114 +0,0 @@ -# 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. ---- - -# 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. Don't include ".target" or ".service" -# in the name. -# - *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. If mandatory -# is not specified, the default is false. -# -# An entry may also be given as a single string, which is then -# interpreted as the name of the service. In this case, mandatory -# is also set to the default of false. -# -# Use [] to express an empty list. - -# # 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). -# # -# # Enables .service -# services: -# - name: "NetworkManager" -# mandatory: true -# - name: "cups" -# mandatory: false -# -# # Enables .target -# targets: -# - name: "graphical" -# mandatory: true -# -# # Disables .service -# disable: -# - name: "pacman-init" -# mandatory: false -# -# # Disables .target -# # .. this shows how to use just the name -# disable-targets: -# - graphical -# -# # Masks (stronger version of disable). This section -# # is unusual because you **must** include the suffix -# # (e.g. ".service") as part of the name, so, e.g. to mask -# # NetworkManager (rather than just disable it) you must -# # specify "NetworkManager.service" as name. -# mask: -# - name: "NetworkManager.service" -# - mandatory: true - -# By default, no changes are made. -#services: [] -#targets: [] -#disable: [] -disable-targets: [] - -# Manjaro settings - -services: - - name: "NetworkManager" - mandatory: false - - - name: "org.cups.cupsd" - mandatory: false - - - name: "lightdm-plymouth" - mandatory: false - - - name: "pacman-init" - mandatory: false - - - name: "tlp" - mandatory: false - - - name: "tlp-sleep" - mandatory: false - - - name: "snapd.apparmor" - mandatory: false - - - name: "apparmor" - mandatory: false - - - name: "snapd" - mandatory: false - -targets: - - name: "graphical" - mandatory: true - -disable: - - name: "dhcpcd" - mandatory: false - -mask: - - name: "systemd-rfkill" - mandatory: false - - - name: "systemd-rfkill.socket" - mandatory: false diff --git a/channels/cinnamon/airootfs.x86_64/usr/share/calamares/modules/services.conf b/channels/cinnamon/airootfs.x86_64/usr/share/calamares/modules/services.conf deleted file mode 100644 index ece1eda5..00000000 --- a/channels/cinnamon/airootfs.x86_64/usr/share/calamares/modules/services.conf +++ /dev/null @@ -1,114 +0,0 @@ -# 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. ---- - -# 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. Don't include ".target" or ".service" -# in the name. -# - *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. If mandatory -# is not specified, the default is false. -# -# An entry may also be given as a single string, which is then -# interpreted as the name of the service. In this case, mandatory -# is also set to the default of false. -# -# Use [] to express an empty list. - -# # 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). -# # -# # Enables .service -# services: -# - name: "NetworkManager" -# mandatory: true -# - name: "cups" -# mandatory: false -# -# # Enables .target -# targets: -# - name: "graphical" -# mandatory: true -# -# # Disables .service -# disable: -# - name: "pacman-init" -# mandatory: false -# -# # Disables .target -# # .. this shows how to use just the name -# disable-targets: -# - graphical -# -# # Masks (stronger version of disable). This section -# # is unusual because you **must** include the suffix -# # (e.g. ".service") as part of the name, so, e.g. to mask -# # NetworkManager (rather than just disable it) you must -# # specify "NetworkManager.service" as name. -# mask: -# - name: "NetworkManager.service" -# - mandatory: true - -# By default, no changes are made. -#services: [] -#targets: [] -#disable: [] -disable-targets: [] - -# Manjaro settings - -services: - - name: "NetworkManager" - mandatory: false - - - name: "org.cups.cupsd" - mandatory: false - - - name: "lightdm" - mandatory: false - - - name: "pacman-init" - mandatory: false - - - name: "tlp" - mandatory: false - - - name: "tlp-sleep" - mandatory: false - - - name: "snapd.apparmor" - mandatory: false - - - name: "apparmor" - mandatory: false - - - name: "snapd" - mandatory: false - -targets: - - name: "graphical" - mandatory: true - -disable: - - name: "dhcpcd" - mandatory: false - -mask: - - name: "systemd-rfkill" - mandatory: false - - - name: "systemd-rfkill.socket" - mandatory: false diff --git a/channels/lxde/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf b/channels/lxde/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf deleted file mode 100644 index 8bacf641..00000000 --- a/channels/lxde/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf +++ /dev/null @@ -1,114 +0,0 @@ -# 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. ---- - -# 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. Don't include ".target" or ".service" -# in the name. -# - *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. If mandatory -# is not specified, the default is false. -# -# An entry may also be given as a single string, which is then -# interpreted as the name of the service. In this case, mandatory -# is also set to the default of false. -# -# Use [] to express an empty list. - -# # 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). -# # -# # Enables .service -# services: -# - name: "NetworkManager" -# mandatory: true -# - name: "cups" -# mandatory: false -# -# # Enables .target -# targets: -# - name: "graphical" -# mandatory: true -# -# # Disables .service -# disable: -# - name: "pacman-init" -# mandatory: false -# -# # Disables .target -# # .. this shows how to use just the name -# disable-targets: -# - graphical -# -# # Masks (stronger version of disable). This section -# # is unusual because you **must** include the suffix -# # (e.g. ".service") as part of the name, so, e.g. to mask -# # NetworkManager (rather than just disable it) you must -# # specify "NetworkManager.service" as name. -# mask: -# - name: "NetworkManager.service" -# - mandatory: true - -# By default, no changes are made. -#services: [] -#targets: [] -#disable: [] -disable-targets: [] - -# Manjaro settings - -services: - - name: "NetworkManager" - mandatory: false - - - name: "org.cups.cupsd" - mandatory: false - - - name: "lightdm-plymouth" - mandatory: false - - - name: "pacman-init" - mandatory: false - - - name: "tlp" - mandatory: false - - - name: "tlp-sleep" - mandatory: false - - - name: "snapd.apparmor" - mandatory: false - - - name: "apparmor" - mandatory: false - - - name: "snapd" - mandatory: false - -targets: - - name: "graphical" - mandatory: true - -disable: - - name: "dhcpcd" - mandatory: false - -mask: - - name: "systemd-rfkill" - mandatory: false - - - name: "systemd-rfkill.socket" - mandatory: false diff --git a/channels/lxde/airootfs.x86_64/usr/share/calamares/modules/services.conf b/channels/lxde/airootfs.x86_64/usr/share/calamares/modules/services.conf deleted file mode 100644 index ece1eda5..00000000 --- a/channels/lxde/airootfs.x86_64/usr/share/calamares/modules/services.conf +++ /dev/null @@ -1,114 +0,0 @@ -# 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. ---- - -# 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. Don't include ".target" or ".service" -# in the name. -# - *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. If mandatory -# is not specified, the default is false. -# -# An entry may also be given as a single string, which is then -# interpreted as the name of the service. In this case, mandatory -# is also set to the default of false. -# -# Use [] to express an empty list. - -# # 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). -# # -# # Enables .service -# services: -# - name: "NetworkManager" -# mandatory: true -# - name: "cups" -# mandatory: false -# -# # Enables .target -# targets: -# - name: "graphical" -# mandatory: true -# -# # Disables .service -# disable: -# - name: "pacman-init" -# mandatory: false -# -# # Disables .target -# # .. this shows how to use just the name -# disable-targets: -# - graphical -# -# # Masks (stronger version of disable). This section -# # is unusual because you **must** include the suffix -# # (e.g. ".service") as part of the name, so, e.g. to mask -# # NetworkManager (rather than just disable it) you must -# # specify "NetworkManager.service" as name. -# mask: -# - name: "NetworkManager.service" -# - mandatory: true - -# By default, no changes are made. -#services: [] -#targets: [] -#disable: [] -disable-targets: [] - -# Manjaro settings - -services: - - name: "NetworkManager" - mandatory: false - - - name: "org.cups.cupsd" - mandatory: false - - - name: "lightdm" - mandatory: false - - - name: "pacman-init" - mandatory: false - - - name: "tlp" - mandatory: false - - - name: "tlp-sleep" - mandatory: false - - - name: "snapd.apparmor" - mandatory: false - - - name: "apparmor" - mandatory: false - - - name: "snapd" - mandatory: false - -targets: - - name: "graphical" - mandatory: true - -disable: - - name: "dhcpcd" - mandatory: false - -mask: - - name: "systemd-rfkill" - mandatory: false - - - name: "systemd-rfkill.socket" - mandatory: false diff --git a/channels/serene/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf b/channels/serene/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf deleted file mode 100644 index 8bacf641..00000000 --- a/channels/serene/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf +++ /dev/null @@ -1,114 +0,0 @@ -# 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. ---- - -# 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. Don't include ".target" or ".service" -# in the name. -# - *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. If mandatory -# is not specified, the default is false. -# -# An entry may also be given as a single string, which is then -# interpreted as the name of the service. In this case, mandatory -# is also set to the default of false. -# -# Use [] to express an empty list. - -# # 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). -# # -# # Enables .service -# services: -# - name: "NetworkManager" -# mandatory: true -# - name: "cups" -# mandatory: false -# -# # Enables .target -# targets: -# - name: "graphical" -# mandatory: true -# -# # Disables .service -# disable: -# - name: "pacman-init" -# mandatory: false -# -# # Disables .target -# # .. this shows how to use just the name -# disable-targets: -# - graphical -# -# # Masks (stronger version of disable). This section -# # is unusual because you **must** include the suffix -# # (e.g. ".service") as part of the name, so, e.g. to mask -# # NetworkManager (rather than just disable it) you must -# # specify "NetworkManager.service" as name. -# mask: -# - name: "NetworkManager.service" -# - mandatory: true - -# By default, no changes are made. -#services: [] -#targets: [] -#disable: [] -disable-targets: [] - -# Manjaro settings - -services: - - name: "NetworkManager" - mandatory: false - - - name: "org.cups.cupsd" - mandatory: false - - - name: "lightdm-plymouth" - mandatory: false - - - name: "pacman-init" - mandatory: false - - - name: "tlp" - mandatory: false - - - name: "tlp-sleep" - mandatory: false - - - name: "snapd.apparmor" - mandatory: false - - - name: "apparmor" - mandatory: false - - - name: "snapd" - mandatory: false - -targets: - - name: "graphical" - mandatory: true - -disable: - - name: "dhcpcd" - mandatory: false - -mask: - - name: "systemd-rfkill" - mandatory: false - - - name: "systemd-rfkill.socket" - mandatory: false diff --git a/channels/serene/airootfs.x86_64/usr/share/calamares/modules/services.conf b/channels/serene/airootfs.x86_64/usr/share/calamares/modules/services.conf deleted file mode 100644 index ece1eda5..00000000 --- a/channels/serene/airootfs.x86_64/usr/share/calamares/modules/services.conf +++ /dev/null @@ -1,114 +0,0 @@ -# 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. ---- - -# 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. Don't include ".target" or ".service" -# in the name. -# - *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. If mandatory -# is not specified, the default is false. -# -# An entry may also be given as a single string, which is then -# interpreted as the name of the service. In this case, mandatory -# is also set to the default of false. -# -# Use [] to express an empty list. - -# # 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). -# # -# # Enables .service -# services: -# - name: "NetworkManager" -# mandatory: true -# - name: "cups" -# mandatory: false -# -# # Enables .target -# targets: -# - name: "graphical" -# mandatory: true -# -# # Disables .service -# disable: -# - name: "pacman-init" -# mandatory: false -# -# # Disables .target -# # .. this shows how to use just the name -# disable-targets: -# - graphical -# -# # Masks (stronger version of disable). This section -# # is unusual because you **must** include the suffix -# # (e.g. ".service") as part of the name, so, e.g. to mask -# # NetworkManager (rather than just disable it) you must -# # specify "NetworkManager.service" as name. -# mask: -# - name: "NetworkManager.service" -# - mandatory: true - -# By default, no changes are made. -#services: [] -#targets: [] -#disable: [] -disable-targets: [] - -# Manjaro settings - -services: - - name: "NetworkManager" - mandatory: false - - - name: "org.cups.cupsd" - mandatory: false - - - name: "lightdm" - mandatory: false - - - name: "pacman-init" - mandatory: false - - - name: "tlp" - mandatory: false - - - name: "tlp-sleep" - mandatory: false - - - name: "snapd.apparmor" - mandatory: false - - - name: "apparmor" - mandatory: false - - - name: "snapd" - mandatory: false - -targets: - - name: "graphical" - mandatory: true - -disable: - - name: "dhcpcd" - mandatory: false - -mask: - - name: "systemd-rfkill" - mandatory: false - - - name: "systemd-rfkill.socket" - mandatory: false diff --git a/channels/xfce-pro/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf b/channels/xfce-pro/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf deleted file mode 100644 index 8bacf641..00000000 --- a/channels/xfce-pro/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf +++ /dev/null @@ -1,114 +0,0 @@ -# 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. ---- - -# 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. Don't include ".target" or ".service" -# in the name. -# - *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. If mandatory -# is not specified, the default is false. -# -# An entry may also be given as a single string, which is then -# interpreted as the name of the service. In this case, mandatory -# is also set to the default of false. -# -# Use [] to express an empty list. - -# # 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). -# # -# # Enables .service -# services: -# - name: "NetworkManager" -# mandatory: true -# - name: "cups" -# mandatory: false -# -# # Enables .target -# targets: -# - name: "graphical" -# mandatory: true -# -# # Disables .service -# disable: -# - name: "pacman-init" -# mandatory: false -# -# # Disables .target -# # .. this shows how to use just the name -# disable-targets: -# - graphical -# -# # Masks (stronger version of disable). This section -# # is unusual because you **must** include the suffix -# # (e.g. ".service") as part of the name, so, e.g. to mask -# # NetworkManager (rather than just disable it) you must -# # specify "NetworkManager.service" as name. -# mask: -# - name: "NetworkManager.service" -# - mandatory: true - -# By default, no changes are made. -#services: [] -#targets: [] -#disable: [] -disable-targets: [] - -# Manjaro settings - -services: - - name: "NetworkManager" - mandatory: false - - - name: "org.cups.cupsd" - mandatory: false - - - name: "lightdm-plymouth" - mandatory: false - - - name: "pacman-init" - mandatory: false - - - name: "tlp" - mandatory: false - - - name: "tlp-sleep" - mandatory: false - - - name: "snapd.apparmor" - mandatory: false - - - name: "apparmor" - mandatory: false - - - name: "snapd" - mandatory: false - -targets: - - name: "graphical" - mandatory: true - -disable: - - name: "dhcpcd" - mandatory: false - -mask: - - name: "systemd-rfkill" - mandatory: false - - - name: "systemd-rfkill.socket" - mandatory: false diff --git a/channels/xfce-pro/airootfs.x86_64/usr/share/calamares/modules/services.conf b/channels/xfce-pro/airootfs.x86_64/usr/share/calamares/modules/services.conf deleted file mode 100644 index ece1eda5..00000000 --- a/channels/xfce-pro/airootfs.x86_64/usr/share/calamares/modules/services.conf +++ /dev/null @@ -1,114 +0,0 @@ -# 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. ---- - -# 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. Don't include ".target" or ".service" -# in the name. -# - *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. If mandatory -# is not specified, the default is false. -# -# An entry may also be given as a single string, which is then -# interpreted as the name of the service. In this case, mandatory -# is also set to the default of false. -# -# Use [] to express an empty list. - -# # 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). -# # -# # Enables .service -# services: -# - name: "NetworkManager" -# mandatory: true -# - name: "cups" -# mandatory: false -# -# # Enables .target -# targets: -# - name: "graphical" -# mandatory: true -# -# # Disables .service -# disable: -# - name: "pacman-init" -# mandatory: false -# -# # Disables .target -# # .. this shows how to use just the name -# disable-targets: -# - graphical -# -# # Masks (stronger version of disable). This section -# # is unusual because you **must** include the suffix -# # (e.g. ".service") as part of the name, so, e.g. to mask -# # NetworkManager (rather than just disable it) you must -# # specify "NetworkManager.service" as name. -# mask: -# - name: "NetworkManager.service" -# - mandatory: true - -# By default, no changes are made. -#services: [] -#targets: [] -#disable: [] -disable-targets: [] - -# Manjaro settings - -services: - - name: "NetworkManager" - mandatory: false - - - name: "org.cups.cupsd" - mandatory: false - - - name: "lightdm" - mandatory: false - - - name: "pacman-init" - mandatory: false - - - name: "tlp" - mandatory: false - - - name: "tlp-sleep" - mandatory: false - - - name: "snapd.apparmor" - mandatory: false - - - name: "apparmor" - mandatory: false - - - name: "snapd" - mandatory: false - -targets: - - name: "graphical" - mandatory: true - -disable: - - name: "dhcpcd" - mandatory: false - -mask: - - name: "systemd-rfkill" - mandatory: false - - - name: "systemd-rfkill.socket" - mandatory: false diff --git a/channels/xfce/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf b/channels/xfce/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf deleted file mode 100644 index 8bacf641..00000000 --- a/channels/xfce/airootfs.x86_64/usr/share/calamares/modules/services-plymouth.conf +++ /dev/null @@ -1,114 +0,0 @@ -# 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. ---- - -# 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. Don't include ".target" or ".service" -# in the name. -# - *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. If mandatory -# is not specified, the default is false. -# -# An entry may also be given as a single string, which is then -# interpreted as the name of the service. In this case, mandatory -# is also set to the default of false. -# -# Use [] to express an empty list. - -# # 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). -# # -# # Enables .service -# services: -# - name: "NetworkManager" -# mandatory: true -# - name: "cups" -# mandatory: false -# -# # Enables .target -# targets: -# - name: "graphical" -# mandatory: true -# -# # Disables .service -# disable: -# - name: "pacman-init" -# mandatory: false -# -# # Disables .target -# # .. this shows how to use just the name -# disable-targets: -# - graphical -# -# # Masks (stronger version of disable). This section -# # is unusual because you **must** include the suffix -# # (e.g. ".service") as part of the name, so, e.g. to mask -# # NetworkManager (rather than just disable it) you must -# # specify "NetworkManager.service" as name. -# mask: -# - name: "NetworkManager.service" -# - mandatory: true - -# By default, no changes are made. -#services: [] -#targets: [] -#disable: [] -disable-targets: [] - -# Manjaro settings - -services: - - name: "NetworkManager" - mandatory: false - - - name: "org.cups.cupsd" - mandatory: false - - - name: "lightdm-plymouth" - mandatory: false - - - name: "pacman-init" - mandatory: false - - - name: "tlp" - mandatory: false - - - name: "tlp-sleep" - mandatory: false - - - name: "snapd.apparmor" - mandatory: false - - - name: "apparmor" - mandatory: false - - - name: "snapd" - mandatory: false - -targets: - - name: "graphical" - mandatory: true - -disable: - - name: "dhcpcd" - mandatory: false - -mask: - - name: "systemd-rfkill" - mandatory: false - - - name: "systemd-rfkill.socket" - mandatory: false diff --git a/channels/xfce/airootfs.x86_64/usr/share/calamares/modules/services.conf b/channels/xfce/airootfs.x86_64/usr/share/calamares/modules/services.conf deleted file mode 100644 index ece1eda5..00000000 --- a/channels/xfce/airootfs.x86_64/usr/share/calamares/modules/services.conf +++ /dev/null @@ -1,114 +0,0 @@ -# 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. ---- - -# 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. Don't include ".target" or ".service" -# in the name. -# - *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. If mandatory -# is not specified, the default is false. -# -# An entry may also be given as a single string, which is then -# interpreted as the name of the service. In this case, mandatory -# is also set to the default of false. -# -# Use [] to express an empty list. - -# # 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). -# # -# # Enables .service -# services: -# - name: "NetworkManager" -# mandatory: true -# - name: "cups" -# mandatory: false -# -# # Enables .target -# targets: -# - name: "graphical" -# mandatory: true -# -# # Disables .service -# disable: -# - name: "pacman-init" -# mandatory: false -# -# # Disables .target -# # .. this shows how to use just the name -# disable-targets: -# - graphical -# -# # Masks (stronger version of disable). This section -# # is unusual because you **must** include the suffix -# # (e.g. ".service") as part of the name, so, e.g. to mask -# # NetworkManager (rather than just disable it) you must -# # specify "NetworkManager.service" as name. -# mask: -# - name: "NetworkManager.service" -# - mandatory: true - -# By default, no changes are made. -#services: [] -#targets: [] -#disable: [] -disable-targets: [] - -# Manjaro settings - -services: - - name: "NetworkManager" - mandatory: false - - - name: "org.cups.cupsd" - mandatory: false - - - name: "lightdm" - mandatory: false - - - name: "pacman-init" - mandatory: false - - - name: "tlp" - mandatory: false - - - name: "tlp-sleep" - mandatory: false - - - name: "snapd.apparmor" - mandatory: false - - - name: "apparmor" - mandatory: false - - - name: "snapd" - mandatory: false - -targets: - - name: "graphical" - mandatory: true - -disable: - - name: "dhcpcd" - mandatory: false - -mask: - - name: "systemd-rfkill" - mandatory: false - - - name: "systemd-rfkill.socket" - mandatory: false -- 2.11.0