Puppet Class: debian
- Defined in:
- modules/debian/manifests/init.pp
Summary
perform basic constraints tests and configure variables this class will be called automaticallyOverview
SPDX-License-Identifier: Apache-2.0
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'modules/debian/manifests/init.pp', line 4
class debian {
unless $facts['os']['family'] == 'Debian' {
fail('Only Debian is supported')
}
$supported = {
'Debian' => {
'buster' => 10,
'bullseye' => 11,
'bookworm' => 12,
'trixie' => 13,
},
}
# Before a debian release is stable /etc/debian_version, which is what
# facter uses to calculate the release values, is equal to $codename/sid
# instead of the expected point release value e.g. 11.0. This causes this
# module to fail as it expects theses values to be numbers. As such we
# force the version to $testing if the major value is not a number
$testing = 12
$major = $facts['os']['release']['major'] ? {
/\d+/ => Integer($facts['os']['release']['major']),
default => $testing,
}
unless $facts['os']['name'] in $supported {
fail("invalid Derivative (${$facts['os']}). supported derivatives: ${supported.keys.join(', ')}")
}
}
|