diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-12-31 18:22:12 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-12-31 18:22:12 -0300 |
commit | 74d515930abbf2278ac4387cb16f5f2ce5f08807 (patch) | |
tree | fcdbcc4e91991225ef06c144602c81f37839313e /manifests/series5.pp | |
parent | a344dbf14ca118ea4862f171d2111713607e54c6 (diff) | |
download | puppet-php-74d515930abbf2278ac4387cb16f5f2ce5f08807.tar.gz puppet-php-74d515930abbf2278ac4387cb16f5f2ce5f08807.tar.bz2 |
Diffstat (limited to 'manifests/series5.pp')
-rw-r--r-- | manifests/series5.pp | 29 |
1 files changed, 21 insertions, 8 deletions
diff --git a/manifests/series5.pp b/manifests/series5.pp index 8a9149c..07cbc0d 100644 --- a/manifests/series5.pp +++ b/manifests/series5.pp @@ -1,25 +1,38 @@ class php::series5( $hardened = true, $manage_mod_php = false, + $deb_sury_repo = 'absent', ) { case $::lsbdistcodename { 'xenial': { - include php::ppa + class { 'php::ppa': + ensure => $deb_sury_repo, + } } 'trusty': { - include php::ppa + class { 'php::ppa': + ensure => $deb_sury_repo, + } } 'bookworm': { - include php::dpa + class { 'php::dpa': + ensure => $deb_sury_repo, + } } 'bullseye': { - include php::dpa - } - 'buster': { - include php::dpa + class { 'php::dpa': + ensure => $deb_sury_repo, + } } 'stretch': { - include php::dpa + class { 'php::dpa': + ensure => $deb_sury_repo, + } + } + 'buster': { + class { 'php::dpa': + ensure => $deb_sury_repo, + } } } |