Skip to content

Commit

Permalink
Remove Debian package special case
Browse files Browse the repository at this point in the history
This was an ancient workaround where puppet didn't properly depend on
puppet-common. On Debian Jessie puppet already depends on puppet-common
and everything newer has made puppet-common a dummy transitional
package. This means we can remove the special case and fall back to the
general else case.
  • Loading branch information
ekohl committed Dec 28, 2018
1 parent 19a6ba1 commit d22a852
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -278,11 +278,6 @@

if $aio_package {
$client_package = ['puppet-agent']
} elsif $::osfamily == 'Debian' {
$client_package = $deb_naio_package ? {
true => ['puppet'],
default => ['puppet-common', 'puppet']
}
} elsif ($::osfamily =~ /(FreeBSD|DragonFly)/) {
if (versioncmp($::puppetversion, '5.0') > 0) {
$client_package = ['puppet5']
Expand Down

0 comments on commit d22a852

Please sign in to comment.