- 05 Jan, 2022 1 commit
-
-
Thomas Goirand authored
-
- 12 Mar, 2021 1 commit
-
-
Thomas Goirand authored
* Source upload to allow migration to testing.
-
- 10 Mar, 2021 1 commit
-
-
Thomas Goirand authored
-
- 10 Feb, 2021 1 commit
-
-
Raphaël Pinson authored
Signed-off-by:Raphaël Pinson <raphael.pinson@camptocamp.com>
-
- 03 Feb, 2021 2 commits
-
-
Konstantin Babushkin authored
* Allow service reloading #159 * add restart argument and pass it to the service * Update manifests/unit_file.pp Co-authored-by:
Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl> Co-authored-by:
Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl>
-
Pat Riehecky authored
-
- 29 Jan, 2021 1 commit
-
-
Bryan Gwilliam authored
* Allow additional option for $cache parameter Update the cache parameter on init class to match the allowed values for resolved. * added tests for resolved cache variants
-
- 19 Jan, 2021 2 commits
-
-
Raphaël Pinson authored
-
Raphaël Pinson authored
Signed-off-by:Raphaël Pinson <raphael.pinson@camptocamp.com>
-
- 18 Jan, 2021 2 commits
-
-
Raphaël Pinson authored
Signed-off-by:Raphaël Pinson <raphael.pinson@camptocamp.com>
-
Ewoud Kohl van Wijngaarden authored
This is recommended by puppetlabs_spec_helper and avoids a deprecation warning. bbed0b8a already started the conversion, but didn't update the existing fact tests. Because the mock_with call was incorrect (needs to be done before require), this didn't show.
-
- 15 Jan, 2021 1 commit
-
-
Hubert authored
* Add ability to specify supported option 'infinity' for LimitNPROC From limits.conf(5) All items support the values -1, unlimited or infinity indicating no limit, except for priority and nice. * Extend validation to include improved regexp
-
- 14 Jan, 2021 1 commit
-
-
Ewoud Kohl van Wijngaarden authored
* Move lint control statements out of documentation Otherwise the lint control statements end up in REFERENCE.md. * Regenerate REFERENCE.md
-
- 22 Oct, 2020 2 commits
-
-
Pat Riehecky authored
* Add parameter for ENCs to make loginctl_users easily * Update spec/classes/init_spec.rb Co-authored-by:
Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl> Co-authored-by:
Ewoud Kohl van Wijngaarden <ewoud@kohlvanwijngaarden.nl>
-
Pat Riehecky authored
-
- 17 Sep, 2020 2 commits
-
-
Pat Riehecky authored
-
Pat Riehecky authored
-
- 21 Aug, 2020 5 commits
-
-
Raphaël Pinson authored
-
Raphaël Pinson authored
-
Raphaël Pinson authored
-
Raphaël Pinson authored
-
Raphaël Pinson authored
-
- 23 Jul, 2020 1 commit
-
-
Ewoud Kohl van Wijngaarden authored
90cc85cb introduced this but with a typo in the name so puppet-strings couldn't find it.
-
- 16 Jul, 2020 1 commit
-
-
Christoph Maser authored
* add factory for dropin files * style add colon Co-authored-by:
Christoph Maser <christoph.maser@1und1.de> Co-authored-by:
Raphaël Pinson <github+aem1eeshi1@raphink.net>
-
- 15 Jul, 2020 2 commits
-
-
Kenyon Ralph authored
Comment was a copy-paste error from system.pp.
-
Kenyon Ralph authored
* README.md: path formatting * README.md: link to Forge module * README.md: whitespace cleanup
-
- 03 Jun, 2020 1 commit
-
-
Tobias Urdin authored
* Add selinux_ignore_defaults support to dropin_file Adds support for callers to pass the selinux_ignore_defaults which is then used for the file resources. * Add selinux_ignore_defaults support to service_limits And then pass the parameter down to the dropin_file definition so that it's used for the file resources.
-
- 29 May, 2020 1 commit
-
-
Christoph Maser authored
Co-authored-by:Christoph Maser <christoph.maser@1und1.de>
-
- 22 Apr, 2020 1 commit
-
-
Artur Molchanov authored
Allow CPUQuota greater than 100% to allow to use more than one CPU core. Co-authored-by:Artur Molchanov <artur.molchanov@easybrain.com>
-
- 11 Mar, 2020 1 commit
-
-
Trevor Vaughan authored
-
- 09 Mar, 2020 3 commits
-
-
Tim Meusel authored
This reverts commit b2ddb4c4.
-
Tim Meusel authored
Add EL8 Support
-
Trevor Vaughan authored
* Added EL8 support * Added OracleLinux as a supported platform
-
- 24 Feb, 2020 2 commits
-
-
Tim Meusel authored
fix Issue 113
-
Tim Meusel authored
Add Fedora 30/31 compatibility
-
- 20 Feb, 2020 1 commit
-
-
Tim Meusel authored
-
- 19 Feb, 2020 1 commit
-
-
schlitzered authored
-
- 05 Feb, 2020 2 commits
-
-
Tim Meusel authored
New systemd::timer define type
-
djvl authored
* added option for persistent logging * added missing rspec test * corrected two issues * some more corrections on the test spec * modifications for new syntax * fix for more syntax errors * removed trailing slash on file resource * fix missing mode and owner
-
- 04 Feb, 2020 1 commit
-
-
The defined type allows easy creation of the timer and service unit at the same time. Examples of usage ```puppet systemd::timer{'runoften.timer': timer_source => "puppet:///modules/${module_name}/runoften.timer", service_source => "puppet:///modules/${module_name}/runoften.service", } ``` or a trivial daily run as: ```puppet systemd::timer{'daily.timer': timer_content => "[Timer]\nOnCalendar=daily\nRandomizedDelaySec=1d\n", service_content => "[Service]\nType=oneshot\nExecStart=/usr/bin/touch /tmp/file", } ``` If neither `service_content` or `service_source` are specified then no service unit will be created. The service unit name can also be specified. ```puppet systemd::timer{'daily.timer': timer_content => "[Timer]\nOnCalendar=daily\nRandomizedDelaySec=1d\nUnit=touch-me-today.service", service_unit => 'touch-me-today.service', service_content => "[Service]\nType=oneshot\nExecStart=/usr/bin/touch /tmp/file", } ``` Fixes: 118
-