From 0e517856b8db239fc2ae29ff4d5f007b5d1d0441 Mon Sep 17 00:00:00 2001 From: Dan Fandrich Date: Tue, 15 Oct 2024 14:21:45 -0700 Subject: 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. --- manifests/defaults.pp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'manifests/defaults.pp') 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, } -- cgit v1.2.1