aboutsummaryrefslogtreecommitdiffstats
path: root/modules/apache/manifests/var.pp
diff options
context:
space:
mode:
authorDan Fandrich <danf@mageia.org>2024-10-15 14:21:45 -0700
committerDan Fandrich <danf@mageia.org>2024-10-15 14:24:41 -0700
commit0e517856b8db239fc2ae29ff4d5f007b5d1d0441 (patch)
tree828dc0c7c146e7aad71376eee9069f21ae2c3a15 /modules/apache/manifests/var.pp
parenta8116343fd31737660b56357f4179f7cf2584255 (diff)
downloadpuppet-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 'modules/apache/manifests/var.pp')
-rw-r--r--modules/apache/manifests/var.pp6
1 files changed, 1 insertions, 5 deletions
diff --git a/modules/apache/manifests/var.pp b/modules/apache/manifests/var.pp
index 2c33a23f..4a6d68eb 100644
--- a/modules/apache/manifests/var.pp
+++ b/modules/apache/manifests/var.pp
@@ -8,9 +8,5 @@ class apache::var(
$apache_group = 'apache',
$default_vhost_redirect = ''
) {
- if ($::lsbdistrelease == '1') or ($::lsbdistid == 'MandrivaLinux') {
- $pkg_conf = 'apache-conf'
- } else {
- $pkg_conf = 'apache'
- }
+ $pkg_conf = 'apache'
}