-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add puppet 8 support #147
base: master
Are you sure you want to change the base?
feat: add puppet 8 support #147
Conversation
Signed-off-by: Bram Vogelaar <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add Debian 12 and 13 workarounds
info "Debian platform! Lets get you a DEB..." | ||
case $major_version in | ||
"10") deb_codename="buster";; | ||
"11") deb_codename="bullseye";; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"11") deb_codename="bullseye";;
"12") deb_codename="bullseye";; # workaround since there is no 'bookworm' DEB
"13") deb_codename="bullseye";; # workaround since there is no 'trixie' DEB
Open issue on puppetlabs for missing bookworm DEB: puppetlabs/puppet#9149
Debian 13 (trixie): https://www.debian.org/releases/trixie/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add Ubuntu 22.10 "Kinetic"
case $platform_version in | ||
"18.04") deb_codename="bionic";; | ||
"20.04") deb_codename="focal";; | ||
"22.04") deb_codename="jammy";; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"22.04") deb_codename="jammy";;
"22.10") deb_codename="kinetic";;
it is that time again, a new release, we add another file