Add http2
directive instead of listen
option
#403
ci.yml
on: pull_request
Puppet
/
Static validations
23s
Matrix: Puppet / acceptance
Matrix: Puppet / unit
Puppet
/
Test suite
0s
Annotations
102 errors and 20 warnings
Puppet / - Archlinux rolling:
spec/acceptance/nginx_mail_spec.rb#L84
nginx::resource::mailhost define: actualy test the mail module when configured for nginx 1.14 runs successfully
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'archlinuxrolling-64-none.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093332829.pp.0rDbLJ
Last 10 lines of output were:
Oct 20 09:33:35 archlinuxrolling-64-none.example.com systemd[1]: nginx.service: Deactivated successfully.
Oct 20 09:33:35 archlinuxrolling-64-none.example.com systemd[1]: Stopped A high performance web server and a reverse proxy server.
Oct 20 09:33:35 archlinuxrolling-64-none.example.com systemd[1]: Starting A high performance web server and a reverse proxy server...
Oct 20 09:33:35 archlinuxrolling-64-none.example.com nginx[1472]: 2023/10/20 09:33:35 [emerg] 1472#1472: unknown directive "ssl" in /etc/nginx/conf.mail.d/domain1.example.conf:14
Oct 20 09:33:35 archlinuxrolling-64-none.example.com systemd[1]: nginx.service: Control process exited, code=exited, status=1/FAILURE
Oct 20 09:33:35 archlinuxrolling-64-none.example.com systemd[1]: nginx.service: Failed with result 'exit-code'.
Oct 20 09:33:35 archlinuxrolling-64-none.example.com systemd[1]: Failed to start A high performance web server and a reverse proxy server.
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 0.49 seconds
|
Puppet / - Archlinux rolling
Process completed with exit code 1.
|
Puppet / 7 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L62
nginx::resource::server define: should run successfully with ssl configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'debian11-64-puppet7.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093345984.pp.qmAT8K
Last 10 lines of output were:
Oct 20 09:33:26 debian11-64-puppet7.example.com systemd[1]: Stopping nginx - high performance web server...
Oct 20 09:33:26 debian11-64-puppet7.example.com systemd[1]: nginx.service: Succeeded.
Oct 20 09:33:26 debian11-64-puppet7.example.com systemd[1]: Stopped nginx - high performance web server.
Oct 20 09:33:26 debian11-64-puppet7.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:33:26 debian11-64-puppet7.example.com nginx[10005]: nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/conf.mail.d/domain1.example.conf:14
Oct 20 09:33:26 debian11-64-puppet7.example.com nginx[10005]: nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/conf.mail.d/domain1.example.conf:32
Oct 20 09:33:26 debian11-64-puppet7.example.com systemd[1]: Started nginx - high performance web server.
Oct 20 09:33:31 debian11-64-puppet7.example.com systemd[1]: Stopping nginx - high performance web server...
�[mNotice: Applied catalog in 1.49 seconds
|
Puppet / 7 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L102
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl http://www.puppetlabs.com:80') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'debian11-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 80: Connection refused
|
Puppet / 7 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L108
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail http://www.puppetlabs.com:80') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'debian11-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --fail http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 80: Connection refused
|
Puppet / 7 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L114
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'debian11-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 7 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L121
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'debian11-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 7 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L95
nginx::resource::server define: should run successfully with ssl Service "nginx" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "nginx" to be running
|
Puppet / 7 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L99
nginx::resource::server define: should run successfully with ssl Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
|
Puppet / 7 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L130
nginx::resource::server define: should run successfully with encrypted ssl key configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'debian11-64-puppet7.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093352700.pp.DFJZ2F
Last 10 lines of output were:
Oct 20 09:33:26 debian11-64-puppet7.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:33:26 debian11-64-puppet7.example.com nginx[10005]: nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/conf.mail.d/domain1.example.conf:14
Oct 20 09:33:26 debian11-64-puppet7.example.com nginx[10005]: nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/conf.mail.d/domain1.example.conf:32
Oct 20 09:33:26 debian11-64-puppet7.example.com systemd[1]: Started nginx - high performance web server.
Oct 20 09:33:31 debian11-64-puppet7.example.com systemd[1]: Stopping nginx - high performance web server...
�[mNotice: /Stage[main]/Nginx::Service/Service[nginx]: Triggered 'refresh' from 1 event
Info: Class[Nginx::Service]: Unscheduling all events on Class[Nginx::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 1.67 seconds
|
Puppet / 7 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L168
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'debian11-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 7 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L175
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'debian11-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 7 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L62
nginx::resource::server define: should run successfully with ssl configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'debian10-64-puppet7.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093408107.pp.gEW5Jm
Last 10 lines of output were:
Oct 20 09:33:33 debian10-64-puppet7.example.com systemd[1]: Stopping nginx - high performance web server...
Oct 20 09:33:33 debian10-64-puppet7.example.com systemd[1]: nginx.service: Succeeded.
Oct 20 09:33:33 debian10-64-puppet7.example.com systemd[1]: Stopped nginx - high performance web server.
Oct 20 09:33:33 debian10-64-puppet7.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:33:33 debian10-64-puppet7.example.com systemd[1]: Started nginx - high performance web server.
Oct 20 09:33:45 debian10-64-puppet7.example.com systemd[1]: Stopping nginx - high performance web server...
Oct 20 09:33:45 debian10-64-puppet7.example.com systemd[1]: nginx.service: Succeeded.
Oct 20 09:33:45 debian10-64-puppet7.example.com systemd[1]: Stopped nginx - high performance web server.
�[mNotice: Applied catalog in 1.88 seconds
|
Puppet / 7 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L102
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl http://www.puppetlabs.com:80') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'debian10-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 80: Connection refused
|
Puppet / 7 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L108
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail http://www.puppetlabs.com:80') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'debian10-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --fail http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 80: Connection refused
|
Puppet / 7 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L114
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'debian10-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 7 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L121
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'debian10-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 7 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L95
nginx::resource::server define: should run successfully with ssl Service "nginx" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "nginx" to be running
|
Puppet / 7 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L99
nginx::resource::server define: should run successfully with ssl Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
|
Puppet / 7 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L130
nginx::resource::server define: should run successfully with encrypted ssl key configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'debian10-64-puppet7.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093415172.pp.7C4cga
Last 10 lines of output were:
Oct 20 09:33:33 debian10-64-puppet7.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:33:33 debian10-64-puppet7.example.com systemd[1]: Started nginx - high performance web server.
Oct 20 09:33:45 debian10-64-puppet7.example.com systemd[1]: Stopping nginx - high performance web server...
Oct 20 09:33:45 debian10-64-puppet7.example.com systemd[1]: nginx.service: Succeeded.
Oct 20 09:33:45 debian10-64-puppet7.example.com systemd[1]: Stopped nginx - high performance web server.
�[mNotice: /Stage[main]/Nginx::Service/Service[nginx]: Triggered 'refresh' from 1 event
Info: Class[Nginx::Service]: Unscheduling all events on Class[Nginx::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 1.90 seconds
|
Puppet / 7 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L168
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'debian10-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 7 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L175
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'debian10-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 7 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L62
nginx::resource::server define: should run successfully with ssl configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'centos8-64-puppet7.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093405052.pp.VDifT0
Last 10 lines of output were:
Oct 20 09:34:26 centos8-64-puppet7.example.com systemd[1]: Starting The nginx HTTP and reverse proxy server...
Oct 20 09:34:26 centos8-64-puppet7.example.com nginx[4537]: nginx: [emerg] unknown directive "http2" in /etc/nginx/sites-enabled/www.puppetlabs.com.conf:21
Oct 20 09:34:26 centos8-64-puppet7.example.com nginx[4537]: nginx: configuration file /etc/nginx/nginx.conf test failed
Oct 20 09:34:26 centos8-64-puppet7.example.com systemd[1]: nginx.service: Control process exited, code=exited status=1
�[mNotice: /Stage[main]/Nginx::Service/Service[nginx]: Triggered 'refresh' from 1 event
Info: Class[Nginx::Service]: Unscheduling all events on Class[Nginx::Service]
Info: Class[Nginx]: Unscheduling all events on Class[Nginx]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 18.42 seconds
|
Puppet / 7 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L102
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl http://www.puppetlabs.com:80') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'centos8-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 80: Connection refused
|
Puppet / 7 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L108
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail http://www.puppetlabs.com:80') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'centos8-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --fail http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 80: Connection refused
|
Puppet / 7 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L114
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'centos8-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 7 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L121
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'centos8-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 7 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L95
nginx::resource::server define: should run successfully with ssl Service "nginx" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "nginx" to be running
|
Puppet / 7 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L99
nginx::resource::server define: should run successfully with ssl Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
|
Puppet / 7 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L130
nginx::resource::server define: should run successfully with encrypted ssl key configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'centos8-64-puppet7.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093427013.pp.fux83G
Last 10 lines of output were:
Oct 20 09:34:25 centos8-64-puppet7.example.com systemd[1]: nginx.service: Unit cannot be reloaded because it is inactive.
Oct 20 09:34:26 centos8-64-puppet7.example.com systemd[1]: Starting The nginx HTTP and reverse proxy server...
Oct 20 09:34:26 centos8-64-puppet7.example.com nginx[4537]: nginx: [emerg] unknown directive "http2" in /etc/nginx/sites-enabled/www.puppetlabs.com.conf:21
Oct 20 09:34:26 centos8-64-puppet7.example.com nginx[4537]: nginx: configuration file /etc/nginx/nginx.conf test failed
Oct 20 09:34:26 centos8-64-puppet7.example.com systemd[1]: nginx.service: Control process exited, code=exited status=1
�[mNotice: /Stage[main]/Nginx::Service/Service[nginx]: Triggered 'refresh' from 1 event
Info: Class[Nginx::Service]: Unscheduling all events on Class[Nginx::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 0.36 seconds
|
Puppet / 7 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L168
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'centos8-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 7 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L175
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'centos8-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 8 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L62
nginx::resource::server define: should run successfully with ssl configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'centos8-64-puppet8.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093408724.pp.Nmu1Ky
Last 10 lines of output were:
Oct 20 09:34:30 centos8-64-puppet8.example.com systemd[1]: Starting The nginx HTTP and reverse proxy server...
Oct 20 09:34:30 centos8-64-puppet8.example.com nginx[4482]: nginx: [emerg] unknown directive "http2" in /etc/nginx/sites-enabled/www.puppetlabs.com.conf:21
Oct 20 09:34:30 centos8-64-puppet8.example.com nginx[4482]: nginx: configuration file /etc/nginx/nginx.conf test failed
Oct 20 09:34:30 centos8-64-puppet8.example.com systemd[1]: nginx.service: Control process exited, code=exited status=1
�[mNotice: /Stage[main]/Nginx::Service/Service[nginx]: Triggered 'refresh' from 1 event
Info: Class[Nginx::Service]: Unscheduling all events on Class[Nginx::Service]
Info: Class[Nginx]: Unscheduling all events on Class[Nginx]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 17.78 seconds
|
Puppet / 8 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L102
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl http://www.puppetlabs.com:80') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'centos8-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 80: Connection refused
|
Puppet / 8 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L108
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail http://www.puppetlabs.com:80') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'centos8-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --fail http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 80: Connection refused
|
Puppet / 8 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L114
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'centos8-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 8 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L121
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'centos8-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 8 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L95
nginx::resource::server define: should run successfully with ssl Service "nginx" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "nginx" to be running
|
Puppet / 8 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L99
nginx::resource::server define: should run successfully with ssl Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
|
Puppet / 8 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L130
nginx::resource::server define: should run successfully with encrypted ssl key configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'centos8-64-puppet8.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093431835.pp.pMpbH6
Last 10 lines of output were:
Oct 20 09:34:29 centos8-64-puppet8.example.com systemd[1]: nginx.service: Unit cannot be reloaded because it is inactive.
Oct 20 09:34:30 centos8-64-puppet8.example.com systemd[1]: Starting The nginx HTTP and reverse proxy server...
Oct 20 09:34:30 centos8-64-puppet8.example.com nginx[4482]: nginx: [emerg] unknown directive "http2" in /etc/nginx/sites-enabled/www.puppetlabs.com.conf:21
Oct 20 09:34:30 centos8-64-puppet8.example.com nginx[4482]: nginx: configuration file /etc/nginx/nginx.conf test failed
Oct 20 09:34:30 centos8-64-puppet8.example.com systemd[1]: nginx.service: Control process exited, code=exited status=1
�[mNotice: /Stage[main]/Nginx::Service/Service[nginx]: Triggered 'refresh' from 1 event
Info: Class[Nginx::Service]: Unscheduling all events on Class[Nginx::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 0.42 seconds
|
Puppet / 8 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L168
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'centos8-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 8 - CentOS 8:
spec/acceptance/nginx_server_spec.rb#L175
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'centos8-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 8 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L62
nginx::resource::server define: should run successfully with ssl configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'ubuntu2204-64-puppet8.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093449664.pp.NEXVYq
Last 10 lines of output were:
Oct 20 09:34:40 ubuntu2204-64-puppet8.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:34:40 ubuntu2204-64-puppet8.example.com systemd[1]: Started nginx - high performance web server.
Oct 20 09:34:58 ubuntu2204-64-puppet8.example.com systemd[1]: Stopping nginx - high performance web server...
Oct 20 09:34:58 ubuntu2204-64-puppet8.example.com systemd[1]: nginx.service: Deactivated successfully.
Oct 20 09:34:58 ubuntu2204-64-puppet8.example.com systemd[1]: Stopped nginx - high performance web server.
Oct 20 09:34:58 ubuntu2204-64-puppet8.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:34:58 ubuntu2204-64-puppet8.example.com nginx[8507]: nginx: [emerg] unknown directive "http2" in /etc/nginx/sites-enabled/www.puppetlabs.com.conf:21
Oct 20 09:34:58 ubuntu2204-64-puppet8.example.com systemd[1]: nginx.service: Control process exited, code=exited, status=1/FAILURE
�[mNotice: Applied catalog in 1.49 seconds
|
Puppet / 8 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L102
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl http://www.puppetlabs.com:80') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'ubuntu2204-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 80 after 5 ms: Connection refused
|
Puppet / 8 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L108
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail http://www.puppetlabs.com:80') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'ubuntu2204-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --fail http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 80 after 0 ms: Connection refused
|
Puppet / 8 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L114
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'ubuntu2204-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443 after 0 ms: Connection refused
|
Puppet / 8 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L121
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'ubuntu2204-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443 after 0 ms: Connection refused
|
Puppet / 8 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L95
nginx::resource::server define: should run successfully with ssl Service "nginx" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "nginx" to be running
|
Puppet / 8 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L99
nginx::resource::server define: should run successfully with ssl Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
|
Puppet / 8 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L130
nginx::resource::server define: should run successfully with encrypted ssl key configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'ubuntu2204-64-puppet8.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093459400.pp.UZXrOB
Last 10 lines of output were:
Oct 20 09:34:58 ubuntu2204-64-puppet8.example.com systemd[1]: nginx.service: Deactivated successfully.
Oct 20 09:34:58 ubuntu2204-64-puppet8.example.com systemd[1]: Stopped nginx - high performance web server.
Oct 20 09:34:58 ubuntu2204-64-puppet8.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:34:58 ubuntu2204-64-puppet8.example.com nginx[8507]: nginx: [emerg] unknown directive "http2" in /etc/nginx/sites-enabled/www.puppetlabs.com.conf:21
Oct 20 09:34:58 ubuntu2204-64-puppet8.example.com systemd[1]: nginx.service: Control process exited, code=exited, status=1/FAILURE
�[mNotice: /Stage[main]/Nginx::Service/Service[nginx]: Triggered 'refresh' from 1 event
Info: Class[Nginx::Service]: Unscheduling all events on Class[Nginx::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 1.54 seconds
|
Puppet / 8 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L168
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'ubuntu2204-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443 after 3 ms: Connection refused
|
Puppet / 8 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L175
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'ubuntu2204-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443 after 0 ms: Connection refused
|
Puppet / 7 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L62
nginx::resource::server define: should run successfully with ssl configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'ubuntu2204-64-puppet7.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093502230.pp.rWNmDn
Last 10 lines of output were:
Oct 20 09:34:53 ubuntu2204-64-puppet7.example.com systemd[1]: Stopped nginx - high performance web server.
Oct 20 09:34:53 ubuntu2204-64-puppet7.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:34:53 ubuntu2204-64-puppet7.example.com systemd[1]: Started nginx - high performance web server.
Oct 20 09:35:10 ubuntu2204-64-puppet7.example.com systemd[1]: Stopping nginx - high performance web server...
Oct 20 09:35:10 ubuntu2204-64-puppet7.example.com systemd[1]: nginx.service: Deactivated successfully.
Oct 20 09:35:10 ubuntu2204-64-puppet7.example.com systemd[1]: Stopped nginx - high performance web server.
Oct 20 09:35:10 ubuntu2204-64-puppet7.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:35:10 ubuntu2204-64-puppet7.example.com nginx[8543]: nginx: [emerg] unknown directive "http2" in /etc/nginx/sites-enabled/www.puppetlabs.com.conf:21
�[mNotice: Applied catalog in 1.67 seconds
|
Puppet / 7 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L102
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl http://www.puppetlabs.com:80') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'ubuntu2204-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 80 after 8 ms: Connection refused
|
Puppet / 7 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L108
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail http://www.puppetlabs.com:80') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'ubuntu2204-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --fail http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 80 after 0 ms: Connection refused
|
Puppet / 7 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L114
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'ubuntu2204-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443 after 0 ms: Connection refused
|
Puppet / 7 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L121
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'ubuntu2204-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443 after 0 ms: Connection refused
|
Puppet / 7 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L95
nginx::resource::server define: should run successfully with ssl Service "nginx" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "nginx" to be running
|
Puppet / 7 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L99
nginx::resource::server define: should run successfully with ssl Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
|
Puppet / 7 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L130
nginx::resource::server define: should run successfully with encrypted ssl key configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'ubuntu2204-64-puppet7.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093511222.pp.q5fCQg
Last 10 lines of output were:
Oct 20 09:35:10 ubuntu2204-64-puppet7.example.com systemd[1]: Stopping nginx - high performance web server...
Oct 20 09:35:10 ubuntu2204-64-puppet7.example.com systemd[1]: nginx.service: Deactivated successfully.
Oct 20 09:35:10 ubuntu2204-64-puppet7.example.com systemd[1]: Stopped nginx - high performance web server.
Oct 20 09:35:10 ubuntu2204-64-puppet7.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:35:10 ubuntu2204-64-puppet7.example.com nginx[8543]: nginx: [emerg] unknown directive "http2" in /etc/nginx/sites-enabled/www.puppetlabs.com.conf:21
�[mNotice: /Stage[main]/Nginx::Service/Service[nginx]: Triggered 'refresh' from 1 event
Info: Class[Nginx::Service]: Unscheduling all events on Class[Nginx::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 1.69 seconds
|
Puppet / 7 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L168
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'ubuntu2204-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443 after 6 ms: Connection refused
|
Puppet / 7 - Ubuntu 22.04:
spec/acceptance/nginx_server_spec.rb#L175
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'ubuntu2204-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443 after 0 ms: Connection refused
|
Puppet / 8 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L62
nginx::resource::server define: should run successfully with ssl configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'debian10-64-puppet8.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093506029.pp.ypB7LK
Last 10 lines of output were:
Oct 20 09:34:16 debian10-64-puppet8.example.com systemd[1]: Stopping nginx - high performance web server...
Oct 20 09:34:16 debian10-64-puppet8.example.com systemd[1]: nginx.service: Succeeded.
Oct 20 09:34:16 debian10-64-puppet8.example.com systemd[1]: Stopped nginx - high performance web server.
Oct 20 09:34:16 debian10-64-puppet8.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:34:16 debian10-64-puppet8.example.com systemd[1]: Started nginx - high performance web server.
Oct 20 09:34:34 debian10-64-puppet8.example.com systemd[1]: Stopping nginx - high performance web server...
Oct 20 09:34:34 debian10-64-puppet8.example.com systemd[1]: nginx.service: Succeeded.
Oct 20 09:34:34 debian10-64-puppet8.example.com systemd[1]: Stopped nginx - high performance web server.
�[mNotice: Applied catalog in 2.24 seconds
|
Puppet / 8 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L102
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl http://www.puppetlabs.com:80') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'debian10-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 80: Connection refused
|
Puppet / 8 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L108
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail http://www.puppetlabs.com:80') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'debian10-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --fail http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 80: Connection refused
|
Puppet / 8 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L114
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'debian10-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 8 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L121
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'debian10-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 8 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L95
nginx::resource::server define: should run successfully with ssl Service "nginx" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "nginx" to be running
|
Puppet / 8 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L99
nginx::resource::server define: should run successfully with ssl Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
|
Puppet / 8 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L130
nginx::resource::server define: should run successfully with encrypted ssl key configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'debian10-64-puppet8.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093516334.pp.I9hAeS
Last 10 lines of output were:
Oct 20 09:34:16 debian10-64-puppet8.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:34:16 debian10-64-puppet8.example.com systemd[1]: Started nginx - high performance web server.
Oct 20 09:34:34 debian10-64-puppet8.example.com systemd[1]: Stopping nginx - high performance web server...
Oct 20 09:34:34 debian10-64-puppet8.example.com systemd[1]: nginx.service: Succeeded.
Oct 20 09:34:34 debian10-64-puppet8.example.com systemd[1]: Stopped nginx - high performance web server.
�[mNotice: /Stage[main]/Nginx::Service/Service[nginx]: Triggered 'refresh' from 1 event
Info: Class[Nginx::Service]: Unscheduling all events on Class[Nginx::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 2.29 seconds
|
Puppet / 8 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L168
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'debian10-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 8 - Debian 10:
spec/acceptance/nginx_server_spec.rb#L175
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'debian10-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 7 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L62
nginx::resource::server define: should run successfully with ssl configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'ubuntu2004-64-puppet7.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093519811.pp.pimqB7
Last 10 lines of output were:
Oct 20 09:35:11 ubuntu2004-64-puppet7.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:35:11 ubuntu2004-64-puppet7.example.com systemd[1]: Started nginx - high performance web server.
Oct 20 09:35:27 ubuntu2004-64-puppet7.example.com systemd[1]: Stopping nginx - high performance web server...
Oct 20 09:35:27 ubuntu2004-64-puppet7.example.com systemd[1]: nginx.service: Succeeded.
Oct 20 09:35:27 ubuntu2004-64-puppet7.example.com systemd[1]: Stopped nginx - high performance web server.
Oct 20 09:35:27 ubuntu2004-64-puppet7.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:35:27 ubuntu2004-64-puppet7.example.com nginx[8943]: nginx: [emerg] unknown directive "http2" in /etc/nginx/sites-enabled/www.puppetlabs.com.conf:21
Oct 20 09:35:27 ubuntu2004-64-puppet7.example.com systemd[1]: nginx.service: Control process exited, code=exited, status=1/FAILURE
�[mNotice: Applied catalog in 1.80 seconds
|
Puppet / 7 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L102
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl http://www.puppetlabs.com:80') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'ubuntu2004-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 80: Connection refused
|
Puppet / 7 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L108
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail http://www.puppetlabs.com:80') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'ubuntu2004-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --fail http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 80: Connection refused
|
Puppet / 7 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L114
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'ubuntu2004-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 7 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L121
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'ubuntu2004-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 7 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L95
nginx::resource::server define: should run successfully with ssl Service "nginx" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "nginx" to be running
|
Puppet / 7 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L99
nginx::resource::server define: should run successfully with ssl Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
|
Puppet / 7 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L130
nginx::resource::server define: should run successfully with encrypted ssl key configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'ubuntu2004-64-puppet7.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093528705.pp.vxYoAe
Last 10 lines of output were:
Oct 20 09:35:27 ubuntu2004-64-puppet7.example.com systemd[1]: nginx.service: Succeeded.
Oct 20 09:35:27 ubuntu2004-64-puppet7.example.com systemd[1]: Stopped nginx - high performance web server.
Oct 20 09:35:27 ubuntu2004-64-puppet7.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:35:27 ubuntu2004-64-puppet7.example.com nginx[8943]: nginx: [emerg] unknown directive "http2" in /etc/nginx/sites-enabled/www.puppetlabs.com.conf:21
Oct 20 09:35:27 ubuntu2004-64-puppet7.example.com systemd[1]: nginx.service: Control process exited, code=exited, status=1/FAILURE
�[mNotice: /Stage[main]/Nginx::Service/Service[nginx]: Triggered 'refresh' from 1 event
Info: Class[Nginx::Service]: Unscheduling all events on Class[Nginx::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 1.87 seconds
|
Puppet / 7 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L168
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'ubuntu2004-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 7 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L175
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'ubuntu2004-64-puppet7.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 8 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L62
nginx::resource::server define: should run successfully with ssl configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'debian11-64-puppet8.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093517309.pp.OXkPIJ
Last 10 lines of output were:
Oct 20 09:34:45 debian11-64-puppet8.example.com systemd[1]: nginx.service: Succeeded.
Oct 20 09:34:45 debian11-64-puppet8.example.com systemd[1]: Stopped nginx - high performance web server.
Oct 20 09:34:45 debian11-64-puppet8.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:34:45 debian11-64-puppet8.example.com nginx[9982]: nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/conf.mail.d/domain1.example.conf:14
Oct 20 09:34:45 debian11-64-puppet8.example.com nginx[9982]: nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/conf.mail.d/domain1.example.conf:32
Oct 20 09:34:45 debian11-64-puppet8.example.com systemd[1]: Started nginx - high performance web server.
Oct 20 09:34:55 debian11-64-puppet8.example.com systemd[1]: Stopping nginx - high performance web server...
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 1.95 seconds
|
Puppet / 8 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L102
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl http://www.puppetlabs.com:80') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'debian11-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 80: Connection refused
|
Puppet / 8 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L108
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail http://www.puppetlabs.com:80') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'debian11-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --fail http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 80: Connection refused
|
Puppet / 8 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L114
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'debian11-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 8 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L121
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'debian11-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 8 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L95
nginx::resource::server define: should run successfully with ssl Service "nginx" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "nginx" to be running
|
Puppet / 8 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L99
nginx::resource::server define: should run successfully with ssl Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
|
Puppet / 8 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L130
nginx::resource::server define: should run successfully with encrypted ssl key configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'debian11-64-puppet8.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093527837.pp.a71CQF
Last 10 lines of output were:
Oct 20 09:34:45 debian11-64-puppet8.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:34:45 debian11-64-puppet8.example.com nginx[9982]: nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/conf.mail.d/domain1.example.conf:14
Oct 20 09:34:45 debian11-64-puppet8.example.com nginx[9982]: nginx: [warn] the "ssl" directive is deprecated, use the "listen ... ssl" directive instead in /etc/nginx/conf.mail.d/domain1.example.conf:32
Oct 20 09:34:45 debian11-64-puppet8.example.com systemd[1]: Started nginx - high performance web server.
Oct 20 09:34:55 debian11-64-puppet8.example.com systemd[1]: Stopping nginx - high performance web server...
�[mNotice: /Stage[main]/Nginx::Service/Service[nginx]: Triggered 'refresh' from 1 event
Info: Class[Nginx::Service]: Unscheduling all events on Class[Nginx::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 2.02 seconds
|
Puppet / 8 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L168
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'debian11-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 8 - Debian 11:
spec/acceptance/nginx_server_spec.rb#L175
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'debian11-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 8 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L62
nginx::resource::server define: should run successfully with ssl configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'ubuntu2004-64-puppet8.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093548399.pp.i9e78k
Last 10 lines of output were:
Oct 20 09:35:36 ubuntu2004-64-puppet8.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:35:36 ubuntu2004-64-puppet8.example.com systemd[1]: Started nginx - high performance web server.
Oct 20 09:35:59 ubuntu2004-64-puppet8.example.com systemd[1]: Stopping nginx - high performance web server...
Oct 20 09:35:59 ubuntu2004-64-puppet8.example.com systemd[1]: nginx.service: Succeeded.
Oct 20 09:35:59 ubuntu2004-64-puppet8.example.com systemd[1]: Stopped nginx - high performance web server.
Oct 20 09:35:59 ubuntu2004-64-puppet8.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:35:59 ubuntu2004-64-puppet8.example.com nginx[8907]: nginx: [emerg] unknown directive "http2" in /etc/nginx/sites-enabled/www.puppetlabs.com.conf:21
Oct 20 09:35:59 ubuntu2004-64-puppet8.example.com systemd[1]: nginx.service: Control process exited, code=exited, status=1/FAILURE
�[mNotice: Applied catalog in 1.90 seconds
|
Puppet / 8 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L102
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl http://www.puppetlabs.com:80') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'ubuntu2004-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 80: Connection refused
|
Puppet / 8 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L108
nginx::resource::server define: should run successfully with ssl answers to http://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail http://www.puppetlabs.com:80') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'ubuntu2004-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --fail http://www.puppetlabs.com:80
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 80: Connection refused
|
Puppet / 8 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L114
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'ubuntu2004-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 8 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L121
nginx::resource::server define: should run successfully with ssl answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'ubuntu2004-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 8 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L95
nginx::resource::server define: should run successfully with ssl Service "nginx" is expected to be running
Failure/Error: it { is_expected.to be_running }
expected Service "nginx" to be running
|
Puppet / 8 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L99
nginx::resource::server define: should run successfully with ssl Port "443" is expected to be listening
Failure/Error: it { is_expected.to be_listening }
expected Port "443" to be listening
|
Puppet / 8 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L130
nginx::resource::server define: should run successfully with encrypted ssl key configures a nginx SSL server
Failure/Error: apply_manifest(pp, catch_failures: true)
Beaker::Host::CommandFailure:
Host 'ubuntu2004-64-puppet8.example.com' exited with 6 running:
puppet apply --verbose --detailed-exitcodes /tmp/apply_manifest_093600251.pp.KITKOx
Last 10 lines of output were:
Oct 20 09:35:59 ubuntu2004-64-puppet8.example.com systemd[1]: nginx.service: Succeeded.
Oct 20 09:35:59 ubuntu2004-64-puppet8.example.com systemd[1]: Stopped nginx - high performance web server.
Oct 20 09:35:59 ubuntu2004-64-puppet8.example.com systemd[1]: Starting nginx - high performance web server...
Oct 20 09:35:59 ubuntu2004-64-puppet8.example.com nginx[8907]: nginx: [emerg] unknown directive "http2" in /etc/nginx/sites-enabled/www.puppetlabs.com.conf:21
Oct 20 09:35:59 ubuntu2004-64-puppet8.example.com systemd[1]: nginx.service: Control process exited, code=exited, status=1/FAILURE
�[mNotice: /Stage[main]/Nginx::Service/Service[nginx]: Triggered 'refresh' from 1 event
Info: Class[Nginx::Service]: Unscheduling all events on Class[Nginx::Service]
Info: Stage[main]: Unscheduling all events on Stage[main]
�[mNotice: Applied catalog in 2.06 seconds
|
Puppet / 8 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L168
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com with "Hello from www"
Failure/Error:
shell('/usr/bin/curl --insecure https://www.puppetlabs.com:443') do |r|
expect(r.stdout).to eq("Hello from www\n")
end
Beaker::Host::CommandFailure:
Host 'ubuntu2004-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 8 - Ubuntu 20.04:
spec/acceptance/nginx_server_spec.rb#L175
nginx::resource::server define: should run successfully with encrypted ssl key answers to https://www.puppetlabs.com without error
Failure/Error:
shell('/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443') do |r|
expect(r.exit_code).to eq(0)
end
Beaker::Host::CommandFailure:
Host 'ubuntu2004-64-puppet8.example.com' exited with 7 running:
/usr/bin/curl --fail --insecure https://www.puppetlabs.com:443
Last 10 lines of output were:
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
curl: (7) Failed to connect to www.puppetlabs.com port 443: Connection refused
|
Puppet / 8 (Ruby 3.2):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on virtuozzolinux-7-x86_64 with Facter 3.14.5 and Puppet 8.2.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 8 (Ruby 3.2):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on almalinux-8-x86_64 with Facter 4.2.5 and Puppet 8.2.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 8 (Ruby 3.2):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on almalinux-9-x86_64 with Facter 4.2.10 and Puppet 8.2.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 8 (Ruby 3.2):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on archlinux-rolling-x86_64 with Facter 4.2.9 and Puppet 8.2.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 8 (Ruby 3.2):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on centos-7-x86_64 with Facter 4.2.2 and Puppet 8.2.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 8 (Ruby 3.2):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on centos-8-x86_64 with Facter 4.2.2 and Puppet 8.2.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 8 (Ruby 3.2):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on centos-9-x86_64 with Facter 4.2.2 and Puppet 8.2.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 8 (Ruby 3.2):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on debian-10-x86_64 with Facter 4.2.2 and Puppet 8.2.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 8 (Ruby 3.2):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on debian-11-x86_64 with Facter 4.2.5 and Puppet 8.2.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 8 (Ruby 3.2):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on redhat-7-x86_64 with Facter 4.2.13 and Puppet 8.2.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 7 (Ruby 2.7):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on virtuozzolinux-7-x86_64 with Facter 3.14.5 and Puppet 7.26.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 7 (Ruby 2.7):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on almalinux-8-x86_64 with Facter 4.2.5 and Puppet 7.26.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 7 (Ruby 2.7):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on almalinux-9-x86_64 with Facter 4.2.10 and Puppet 7.26.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 7 (Ruby 2.7):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on archlinux-rolling-x86_64 with Facter 4.2.9 and Puppet 7.26.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 7 (Ruby 2.7):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on centos-7-x86_64 with Facter 4.2.2 and Puppet 7.26.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 7 (Ruby 2.7):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on centos-8-x86_64 with Facter 4.2.2 and Puppet 7.26.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 7 (Ruby 2.7):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on centos-9-x86_64 with Facter 4.2.2 and Puppet 7.26.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 7 (Ruby 2.7):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on debian-10-x86_64 with Facter 4.2.2 and Puppet 7.26.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 7 (Ruby 2.7):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on debian-11-x86_64 with Facter 4.2.5 and Puppet 7.26.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|
Puppet / 7 (Ruby 2.7):
spec/defines/resource_server_spec.rb#L1431
nginx::resource::server on redhat-7-x86_64 with Facter 4.2.13 and Puppet 7.26.0 os-independent items attribute resources when listen_port == ssl_port but ssl = false Testing for warnings not yet implemented in classes
Skipped: Not yet implemented
|