diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2021-11-26 12:56:44 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2021-11-26 12:56:44 -0300 | 
| commit | ac71b4c26365b135f19768731e2ecab69a821b77 (patch) | |
| tree | c16309ffad502842bd4fbe42c36f7e3bc1f219c1 | |
| parent | ffbf8b5a962b4d60881bd2d92e6ce9c6fd71cb54 (diff) | |
| download | puppet-php-ac71b4c26365b135f19768731e2ecab69a821b77.tar.gz puppet-php-ac71b4c26365b135f19768731e2ecab69a821b77.tar.bz2  | |
Adds debian bullseye versions
| -rw-r--r-- | manifests/params.pp | 14 | 
1 files changed, 8 insertions, 6 deletions
diff --git a/manifests/params.pp b/manifests/params.pp index 6c2bb03..07f4ad1 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -1,14 +1,16 @@  class php::params {    $version7 = $::lsbdistcodename ? { -    'buster'  => '7.4', -    'stretch' => '7.4', -    default   => '7.4', +    'bullseye' => '7.4', +    'buster'   => '7.4', +    'stretch'  => '7.4', +    default    => '7.4',    }    $version7_previous = $::lsbdistcodename ? { -    'buster'  => [ '7.3', '7.2', '7.1', '7.0' ], -    'stretch' => [ '7.3', '7.2', '7.1', '7.0' ], -    default   => [ '7.3', '7.2', '7.1', '7.0' ], +    'bullseye' => [ '7.3', '7.2', '7.1', '7.0' ], +    'buster'   => [ '7.3', '7.2', '7.1', '7.0' ], +    'stretch'  => [ '7.3', '7.2', '7.1', '7.0' ], +    default    => [ '7.3', '7.2', '7.1', '7.0' ],    }    $version5 = $::lsbdistcodename ? {  | 
