You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Affected Puppet, Ruby, OS and module versions/distributions
Puppet:
Ruby:
Distribution:
Module version:
How to reproduce (e.g Puppet code you use)
What are you seeing
Error: Could not retrieve catalog from remote server: Error 500 on SERVER: Server Error: Evaluation Error: Error while evaluating a Function Call, Only Ubunutu LTS Versions are supported (file: /etc/puppetlabs/code/environments/production/modules/bareos/manifests/repository.pp, line: 62, column: 11) on node
its a ubuntu 22.04
case $facts['os']['family'] {
'Debian': {
# Install and configure an Client to backup
class { '::bareos':
repo_release => '22', # Highly recommend to fix your bareos release. Defaults to 'latest'
manage_repo => true, # use the internally shipped repo management
}
}
What behaviour did you expect instead
That it rolled on ubuntu 22.04 :-)
Output log
Any additional information you'd like to impart
The text was updated successfully, but these errors were encountered:
Here are some additional modifications needed for bareos client to be installed under ubuntu 22.04
modules_external/bareos/manifests/repository.pp
/(?i:debian|ubuntu)/: {
if $os == 'Ubuntu' {
unless $osrelease in ['12.04', '14.04', '16.04', '18.04', '20.04'] {
unless $osrelease in ['12.04', '14.04', '16.04', '18.04', '20.04', '22.04'] {
fail('Only Ubunutu LTS Versions are supported')
}
bareos packages for jammy are still experimental (though working) as of 2023/feb/06 and have a different repo location: https://download.bareos.org/bareos/experimental/nightly/xUbuntu_22.04 (fingerprint is 82834CF002D89BA55C1ED0AA42DA24A6DFEF9127). We use a different way for including repos. so for common use this has to be handled in the upper part of the code aside the other address and gpg statements.
Affected Puppet, Ruby, OS and module versions/distributions
How to reproduce (e.g Puppet code you use)
What are you seeing
Error: Could not retrieve catalog from remote server: Error 500 on SERVER: Server Error: Evaluation Error: Error while evaluating a Function Call, Only Ubunutu LTS Versions are supported (file: /etc/puppetlabs/code/environments/production/modules/bareos/manifests/repository.pp, line: 62, column: 11) on node
its a ubuntu 22.04
case $facts['os']['family'] {
'Debian': {
# Install and configure an Client to backup
class { '::bareos':
repo_release => '22', # Highly recommend to fix your bareos release. Defaults to 'latest'
manage_repo => true, # use the internally shipped repo management
}
}
What behaviour did you expect instead
That it rolled on ubuntu 22.04 :-)
Output log
Any additional information you'd like to impart
The text was updated successfully, but these errors were encountered: