- Jan 17, 2025
-
-
anarcat authored
docs: describe how to deploy systemd templates
-
anarcat authored
Co-authored-by:
Steve Traylen <steve.traylen@cern.ch>
-
- Jan 16, 2025
-
-
Antoine Beaupré authored
I've bent over backwards to make this work, while the solution is much simpler than I thought it was. Closes: #510 Replaces: #511
-
- Jan 10, 2025
-
-
Pat Riehecky authored
-
Pat Riehecky authored
Release 8.1.0
-
- Jan 08, 2025
-
-
Pat Riehecky authored
-
Pat Riehecky authored
Add Missing Condition Units which were added in version244
-
Pat Riehecky authored
Add a few more missing service options
-
Pat Riehecky authored
-
Mihmet Akpinar authored
-
Mihmet Akpinar authored
-
- Dec 13, 2024
-
-
Tim Meusel authored
-
Tim Meusel authored
Release 8.0.0
-
- Dec 03, 2024
-
-
Steve Traylen authored
Correct UMask in mkswap example
-
Steve Traylen authored
Without a correct UMask set the `mkswap` example fails due to permissions being too relaxed.
-
- Nov 26, 2024
-
-
Tim Meusel authored
-
Tim Meusel authored
Support management of Swap unit files
-
Steve Traylen authored
Traditionally the `Install` section is always last in a unit file.
-
Steve Traylen authored
Let `.swap` unit files be managed with `systemd::manage_dropin` and `systemd::manage_unit`. For example: ```puppet systemd::manage_unit{'swapfile.swap': ensure => 'present', active => true, enable => true, unit_entry => { 'Description' => 'Enable a swapfile at /swapfile', } swap_entry => { 'What' => '/swapfile', } install_entry => { 'WantedBy' => 'multi-user.target', }, } ``` * https://www.freedesktop.org/software/systemd/man/latest/systemd.swap.html
-
- Nov 25, 2024
-
-
Yury Bushmelev authored
Drop EOL RHEL, CentOS, Fedora, VirtuozzoLinux versions
-
- Nov 23, 2024
-
-
Yury Bushmelev authored
* VirtuozzoLinux 7 * Fedora 38, 39 * Centos 7, 8 * RHEL 7
-
- Nov 22, 2024
-
-
Oleg Guba authored
* [Systemd::Unit::Service] add support for LogRateLimit* options * fix order
-
- Nov 21, 2024
-
-
Tim Meusel authored
Add Ubuntu 24.04 and Fedora 40 support
-
- Nov 20, 2024
-
-
Yury Bushmelev authored
-
- Nov 12, 2024
-
-
Tim Meusel authored
add support for journal upload and remote server
-
Benedikt Trefzer authored
-
- Nov 11, 2024
-
-
Benedikt Trefzer authored
-
Benedikt Trefzer authored
-
Benedikt Trefzer authored
Reason: equal options in journal-upload and journal-remote
-
Benedikt Trefzer authored
-
- Oct 30, 2024
-
-
Yury Bushmelev authored
Manage {system,user}.conf values
-
Yury Bushmelev authored
-
- Oct 07, 2024
-
-
Tim Meusel authored
dropin_file_spec: fix typo
-
Kenyon Ralph authored
-
- Sep 17, 2024
-
-
Kenyon Ralph authored
modulesync 9.3.0
-
- Sep 16, 2024
-
-
Tim Meusel authored
-
- Sep 13, 2024
-
-
Tim Meusel authored
modulesync 9.2.0
-
Tim Meusel authored
-
Steve Traylen authored
Support Mount units for manage_unit or dropin types
-
Steve Traylen authored
Support addition `.mount` units in `systemd::manage_unit` and `systemd::manage_type`. e.g. ```puppet systemd::manage_unit { 'var-lib-sss-db.mount': ensure => $_use_ramdisk, unit_entry => { 'Description' => 'Mount a ram disk for sssd to use', }, mount_entry => { 'What' => 'tmpfs', 'Where' => '/var/lib/sss/db', 'Type' => 'tmpfs', 'Options' => "size=${ramdisk}M,mode=0700,uid=sssd,gid=sssd,rootcontext=system_u:object_r:sssd_var_lib_t:s0", }, } ``` * https://www.freedesktop.org/software/systemd/man/latest/systemd.mount.html
-