Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"name": "puppet-jira",
"version": "6.2.2-rc0",
Expand Down Expand Up @@ -74,7 +74,8 @@
{
"operatingsystem": "Debian",
"operatingsystemrelease": [
"11"
"11",
"12"
]
},
{
Expand Down
94 changes: 40 additions & 54 deletions spec/acceptance/default_parameters_jira_10_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,50 +2,27 @@

require 'spec_helper_acceptance'

def on_supported_os
family = fact('os.family')
major = fact('os.release.major')
family == 'Debian' and (major >= '22.04' or (major >= '11' and major <= '20'))
end

prepare = <<-EOS
# package {'diffutils':
# ensure => installed
# }
# file_line{'enable show_diff':
# path => '/etc/puppetlabs/puppet/puppet.conf',
# line => 'show_diff = true'
# }
EOS

pre = <<-EOS
if $facts['os']['family'] == 'RedHat' {
$java_package = 'java-17-openjdk'
$java_home = '/usr/lib/jvm/jre-17-openjdk'
$postgresql_version = '13'
$pgsql_package_name = 'postgresql-server'
$pgsql_data_dir = '/var/lib/pgsql'

$manage_dnf_module = $facts['os']['release']['major'] ? {
'8' => true,
default => false # RHEL-9 has pgsql 13 as a default
'8' => true,
default => false, # RHEL-9 has pgsql 13 as a default
}

$autoremove_command = 'dnf --exclude="systemd*" autoremove -y'
}
elsif $facts['os']['family'] == 'Debian' {
$postgresql_version = $facts['os']['release']['major'] ? {
'11' => '13',
default => '14'
}
} elsif $facts['os']['family'] == 'Debian' {
$java_package = 'openjdk-17-jre'
$java_home = '/usr/lib/jvm/java-17-openjdk-amd64'
$pgsql_package_name = "postgresql-${postgresql_version}"
$pgsql_data_dir = "/var/lib/postgresql/${postgresql_version}/main/"
$pgsql_data_dir = "/var/lib/postgresql/*/main/"
$manage_dnf_module = false
$autoremove_command = 'apt autoremove -y'
}

$jira_install_dir = '/opt/jira/'
$postgres_service = 'postgresql'
$jira_service = 'jira'
EOS

pp = <<-EOS
Expand All @@ -55,11 +32,11 @@
# We don't need the output.
class { 'postgresql::globals':
manage_dnf_module => $manage_dnf_module,
version => $postgresql_version,
}

class { 'postgresql::server':
service_status => 'systemctl status postgresql > /dev/null',
needs_initdb => true
needs_initdb => true,
}

postgresql::server::db { 'jira':
Expand All @@ -76,9 +53,10 @@
javahome => $java_home,
script_check_java_manage => false,
connection_settings => 'tcpKeepAlive=true',
require => Postgresql::Server::Db['jira']
require => Postgresql::Server::Db['jira'],
}
EOS

pp = pre + pp

pp_upgrade = <<-EOS
Expand All @@ -87,50 +65,58 @@
java_package => $java_package,
javahome => $java_home,
connection_settings => 'tcpKeepAlive=true',
script_check_java_manage => false
script_check_java_manage => false,
}
EOS

pp_upgrade = pre + pp_upgrade

pp_remove = <<-EOS
package {$java_package:
ensure => purged
package { $java_package:
ensure => purged,
}
exec {'clear JIRA home':
command => 'rm -Rf ~jira/*',

exec { 'clear JIRA home':
command => 'rm -Rf ~jira/*',
provider => shell,
}
package {$pgsql_package_name:
ensure => purged

class { 'postgresql::server':
package_ensure => purged,
}

if $manage_dnf_module {
exec {"dnf module reset postgresql":
command => 'dnf module reset -y postgresql',
exec { 'dnf module reset postgresql':
command => 'dnf module reset -y postgresql',
provider => shell,
}
}
exec {"autoremove cleanup":
command => $autoremove_command,

exec { 'autoremove cleanup':
command => $autoremove_command,
provider => shell,
}
exec {'cleanup pgsql and JIRA install dir':
command => "rm -Rf ${pgsql_data_dir}/* ${$jira_install_dir}/atlassian-jira-software*",

exec { 'cleanup pgsql and JIRA install dir':
command => "rm -Rf ${pgsql_data_dir}/* ${$jira_install_dir}/atlassian-jira-software*",
provider => shell,
require => Exec['autoremove cleanup'],
require => Exec['autoremove cleanup'],
}
service{$postgres_service:
ensure => stopped

service { 'postgresql':
ensure => stopped,
}
service{$jira_service:
ensure => stopped

service { 'jira':
ensure => stopped,
}
EOS

pp_remove = pre + pp_remove

context 'jira 10 only on RedHat >=8 and Debian-11', if: on_supported_os do
context 'jira 10' do
describe 'jira 10 postgresql' do
it 'installs jira 10 with defaults' do
apply_manifest(prepare, catch_failures: true)
# jira just takes *ages* to start up :-(
wget_cmd = 'wget -q --tries=24 --retry-connrefused --read-timeout=10 localhost:8080'
apply_manifest(pp, catch_failures: true)
Expand Down Expand Up @@ -169,17 +155,17 @@

expected_version = '10.3.3'
describe command("wget -q --tries=54 --retry-connrefused --read-timeout=10 -O- localhost:8080 | grep '#{expected_version}'") do
its(:stdout) { is_expected.to include(expected_version) }

Check failure on line 158 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Debian 12

jira 10 jira 10 postgresql Command "wget -q --tries=54 --retry-connrefused --read-timeout=10 -O- localhost:8080 | grep '10.3.3'" stdout is expected to include "10.3.3" Failure/Error: its(:stdout) { is_expected.to include(expected_version) } expected "" to include "10.3.3"

Check failure on line 158 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 8 - Debian 12

jira 10 jira 10 postgresql Command "wget -q --tries=54 --retry-connrefused --read-timeout=10 -O- localhost:8080 | grep '10.3.3'" stdout is expected to include "10.3.3" Failure/Error: its(:stdout) { is_expected.to include(expected_version) } expected "" to include "10.3.3"

Check failure on line 158 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 7 - Debian 12

jira 10 jira 10 postgresql Command "wget -q --tries=54 --retry-connrefused --read-timeout=10 -O- localhost:8080 | grep '10.3.3'" stdout is expected to include "10.3.3" Failure/Error: its(:stdout) { is_expected.to include(expected_version) } expected "" to include "10.3.3"

Check failure on line 158 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Debian 12

jira 10 jira 10 postgresql Command "wget -q --tries=54 --retry-connrefused --read-timeout=10 -O- localhost:8080 | grep '10.3.3'" stdout is expected to include "10.3.3" Failure/Error: its(:stdout) { is_expected.to include(expected_version) } expected "" to include "10.3.3"
end

# cleanup after this spec to ensure that following tests start without any unmanaged
# packages and data
describe 'shutdown' do
it 'cleans up nicely' do

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 8

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'almalinux8-64-puppet7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070512639.cZtDZW.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070512639.cZtDZW.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node almalinux8-64-puppet7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 8

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'almalinux8-64-puppet8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070513571.BoW7MN.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070513571.BoW7MN.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node almalinux8-64-puppet8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 7 - AlmaLinux 8

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'almalinux8-64-openvox7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070518354.XZLu1S.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070518354.XZLu1S.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node almalinux8-64-openvox7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 8

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'rocky8-64-puppet8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070519220.Pi87PS.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070519220.Pi87PS.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node rocky8-64-puppet8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 8 - AlmaLinux 8

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'almalinux8-64-openvox8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070521893.KBvKp9.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070521893.KBvKp9.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node almalinux8-64-openvox8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 8 - Rocky 8

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'rocky8-64-openvox8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070522373.W1PSFM.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070522373.W1PSFM.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node rocky8-64-openvox8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Debian 11

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'debian11-64-puppet7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070535377.PT6PYZ.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070535377.PT6PYZ.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node debian11-64-puppet7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Debian 11

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'debian11-64-puppet8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070539482.Iq8Kwo.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070539482.Iq8Kwo.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node debian11-64-puppet8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 7 - Debian 11

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'debian11-64-openvox7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070545268.ge0wI6.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070545268.ge0wI6.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node debian11-64-openvox7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 8

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'oracle8-64-puppet7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070556542.GHlo6F.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070556542.GHlo6F.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node oracle8-64-puppet7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 7 - OracleLinux 8

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'oracle8-64-openvox7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070555037.6VI1d0.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070555037.6VI1d0.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node oracle8-64-openvox7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 8 - OracleLinux 8

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'oracle8-64-openvox8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070558075.8dre9i.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070558075.8dre9i.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node oracle8-64-openvox8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 8 - Debian 11

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'debian11-64-openvox8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070552817.tAqiGM.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070552817.tAqiGM.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node debian11-64-openvox8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 8

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'oracle8-64-puppet8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070558655.pmz40y.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070558655.pmz40y.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node oracle8-64-puppet8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Ubuntu 22.04

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'ubuntu2204-64-puppet7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070547766.F5PZf9.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070547766.F5PZf9.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node ubuntu2204-64-puppet7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 7 - Ubuntu 22.04

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'ubuntu2204-64-openvox7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070555746.TSalGK.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070555746.TSalGK.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node ubuntu2204-64-openvox7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 8 - Ubuntu 22.04

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'ubuntu2204-64-openvox8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070604480.ewn7Zo.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070604480.ewn7Zo.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node ubuntu2204-64-openvox8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Ubuntu 22.04

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'ubuntu2204-64-puppet8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070603516.YJri62.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070603516.YJri62.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node ubuntu2204-64-puppet8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - AlmaLinux 9

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'almalinux9-64-puppet7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070456979.n6NKCJ.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070456979.n6NKCJ.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node almalinux9-64-puppet7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 8

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'rocky8-64-puppet7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070633112.uFBS4K.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070633112.uFBS4K.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node rocky8-64-puppet7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 7 - Rocky 9

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'rocky9-64-openvox7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070506367.SuYbBv.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070506367.SuYbBv.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node rocky9-64-openvox7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 7 - AlmaLinux 9

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'almalinux9-64-openvox7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070508111.gq3bkB.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070508111.gq3bkB.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node almalinux9-64-openvox7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - AlmaLinux 9

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'almalinux9-64-puppet8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070507761.CUIXCJ.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070507761.CUIXCJ.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node almalinux9-64-puppet8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 8 - AlmaLinux 9

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'almalinux9-64-openvox8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070511879.VwsmKa.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070511879.VwsmKa.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node almalinux9-64-openvox8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Rocky 9

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'rocky9-64-puppet7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070513990.3skYT4.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070513990.3skYT4.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node rocky9-64-puppet7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 7 - Rocky 8

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'rocky8-64-openvox7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070554025.ft0AkB.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070554025.ft0AkB.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node rocky8-64-openvox7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 7 - OracleLinux 9

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'oracle9-64-openvox7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070522236.WIoNvx.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070522236.WIoNvx.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node oracle9-64-openvox7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - OracleLinux 9

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'oracle9-64-puppet8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070524055.vekh03.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070524055.vekh03.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node oracle9-64-puppet8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Debian 12

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'debian12-64-puppet8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070517967.go0LJ6.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070517967.go0LJ6.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node debian12-64-puppet8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 8 - Debian 12

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'debian12-64-openvox8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070520986.MI5Kg2.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070520986.MI5Kg2.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node debian12-64-openvox8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 8 - Rocky 9

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'rocky9-64-openvox8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070526339.fD4gei.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070526339.fD4gei.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node rocky9-64-openvox8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - OracleLinux 9

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'oracle9-64-puppet7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070520551.xkQg5J.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070520551.xkQg5J.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node oracle9-64-puppet7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - CentOS 9

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'centos9-64-puppet7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070522472.vPkZwM.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070522472.vPkZwM.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node centos9-64-puppet7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 7 - Debian 12

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'debian12-64-openvox7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070530026.KeYSEx.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070530026.KeYSEx.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node debian12-64-openvox7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - CentOS 9

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'centos9-64-puppet8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070536952.cBnAh0.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070536952.cBnAh0.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node centos9-64-puppet8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 8 - OracleLinux 9

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'oracle9-64-openvox8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070530956.LJjX2k.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070530956.LJjX2k.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node oracle9-64-openvox8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 8 - Rocky 9

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'rocky9-64-puppet8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070533294.KS0M5e.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070533294.KS0M5e.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node rocky9-64-puppet8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 8 - CentOS 9

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'centos9-64-openvox8.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070527776.FLC0Ok.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070527776.FLC0Ok.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node centos9-64-openvox8.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / Puppet 7 - Debian 12

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'debian12-64-puppet7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070530098.pCk4Sr.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070530098.pCk4Sr.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node debian12-64-puppet7.example.com

Check failure on line 164 in spec/acceptance/default_parameters_jira_10_spec.rb

View workflow job for this annotation

GitHub Actions / Puppet / OpenVox 7 - CentOS 9

jira 10 jira 10 postgresql shutdown cleans up nicely Failure/Error: apply_manifest(pp_remove, catch_failures: true) Beaker::Host::CommandFailure: Host 'centos9-64-openvox7.example.com' exited with 1 running: puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_070628526.ldmGVv.pp Last 10 lines of output were: Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Info: Loading facts Warning: Facter: Container runtime, 'docker', is unsupported, setting to 'container_other' Error: Evaluation Error: Error while evaluating a Resource Statement, Evaluation Error: Error while evaluating a Resource Statement, Cannot alias Service[postgresqld_instance_main] to ["postgresql"] at (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36); resource ["Service", "postgresql"] already declared (file: /tmp/apply_manifest_070628526.ldmGVv.pp, line: 52) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/instance/service.pp, line: 36, column: 5) (file: /etc/puppetlabs/code/environments/production/modules/postgresql/manifests/server/service.pp, line: 3) on node centos9-64-openvox7.example.com
apply_manifest(pp_remove, catch_failures: true)
end

it { shell('service jira stop', acceptable_exit_codes: [0, 1]) }
it { shell('systemctl stop jira', acceptable_exit_codes: [0, 1]) }
it { shell('pkill -9 -f postgres', acceptable_exit_codes: [0, 1]) }
it { shell('pkill -9 -f jira', acceptable_exit_codes: [0, 1]) }
end
Expand Down
Loading