diff options
author | Dan Fandrich <danf@mageia.org> | 2024-10-15 14:21:45 -0700 |
---|---|---|
committer | Dan Fandrich <danf@mageia.org> | 2024-10-15 14:24:41 -0700 |
commit | 0e517856b8db239fc2ae29ff4d5f007b5d1d0441 (patch) | |
tree | 828dc0c7c146e7aad71376eee9069f21ae2c3a15 /manifests/defaults.pp | |
parent | a8116343fd31737660b56357f4179f7cf2584255 (diff) | |
download | puppet-0e517856b8db239fc2ae29ff4d5f007b5d1d0441.tar puppet-0e517856b8db239fc2ae29ff4d5f007b5d1d0441.tar.gz puppet-0e517856b8db239fc2ae29ff4d5f007b5d1d0441.tar.bz2 puppet-0e517856b8db239fc2ae29ff4d5f007b5d1d0441.tar.xz puppet-0e517856b8db239fc2ae29ff4d5f007b5d1d0441.zip |
Remove conditionals for releases older than Mageia 6
This eliminates a bunch of conditionals, simplifying the configuration.
We no longer have any servers running on a release older than this.
Diffstat (limited to 'manifests/defaults.pp')
-rw-r--r-- | manifests/defaults.pp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/manifests/defaults.pp b/manifests/defaults.pp index 762cd146..85f3f31c 100644 --- a/manifests/defaults.pp +++ b/manifests/defaults.pp @@ -30,8 +30,6 @@ Service { ensure => running, } -if versioncmp($::lsbdistrelease, '2') >= 0 { - Service { - provider => systemd, - } +Service { + provider => systemd, } |