1. 10 Mar, 2021 1 commit
  2. 10 Feb, 2021 1 commit
  3. 03 Feb, 2021 2 commits
  4. 29 Jan, 2021 1 commit
  5. 19 Jan, 2021 2 commits
  6. 18 Jan, 2021 2 commits
  7. 15 Jan, 2021 1 commit
  8. 14 Jan, 2021 1 commit
  9. 22 Oct, 2020 2 commits
  10. 17 Sep, 2020 2 commits
  11. 21 Aug, 2020 5 commits
  12. 23 Jul, 2020 1 commit
  13. 16 Jul, 2020 1 commit
  14. 15 Jul, 2020 2 commits
  15. 03 Jun, 2020 1 commit
    • Tobias Urdin's avatar
      Add selinux_ignore_defaults support to dropin_file and service_limits (#151) · e556d278
      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.
      e556d278
  16. 29 May, 2020 1 commit
  17. 22 Apr, 2020 1 commit
  18. 11 Mar, 2020 1 commit
  19. 09 Mar, 2020 3 commits
  20. 24 Feb, 2020 2 commits
  21. 20 Feb, 2020 1 commit
  22. 19 Feb, 2020 1 commit
  23. 05 Feb, 2020 2 commits
    • Tim Meusel's avatar
      Merge pull request #138 from mmoll/timer · bb988ab2
      Tim Meusel authored
      New systemd::timer define type
      bb988ab2
    • djvl's avatar
      add option for persistent logging (#127) · b2ddb4c4
      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
      b2ddb4c4
  24. 04 Feb, 2020 1 commit
    • Steve Traylen's avatar
      New systemd::timer define type · 817694b1
      Steve Traylen authored and Michael Moll's avatar Michael Moll committed
      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
      817694b1
  25. 20 Jan, 2020 1 commit
  26. 17 Jan, 2020 1 commit
    • Mike Surato's avatar
      Adding SLES · 67610abc
      Mike Surato authored
      I used OpenSUSE docker images in the acceptance test areas as that is what is available on the Docker Hub. They should be a good approximation, however.
      67610abc