Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
More CI fixes with latest posgresql module
  • Loading branch information
smortex committed Oct 8, 2023
commit adfe470df73dc3af44561cb8fe0a96577a9c25fc
1 change: 1 addition & 0 deletions spec/unit/classes/database/postgresql_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
release: { 'full' => '7.0', 'major' => '7' },
selinux: { 'enabled' => true },
},
service_provider: 'systemd',
}
end

Expand Down
1 change: 1 addition & 0 deletions spec/unit/classes/database/ssl_configuration_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
networking: {
fqdn: 'cheery-rime@puppet',
},
service_provider: 'systemd',
}
end

Expand Down
2 changes: 1 addition & 1 deletion spec/unit/classes/init_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
on_supported_os.each do |os, facts|
context "on #{os}" do
let(:facts) do
facts.merge(selinux: false)
facts.merge(selinux: false, service_provider: 'systemd')
end

describe 'when using default values for puppetdb class' do
Expand Down
2 changes: 2 additions & 0 deletions spec/unit/classes/master/config_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
let(:facts) do
facts.merge(puppetversion: Puppet.version,
networking: { fqdn: 'puppetdb.example.com' },
service_provider: 'systemd',
selinux: true)
end

Expand Down Expand Up @@ -114,6 +115,7 @@
release: { 'full' => '7.0', 'major' => '7' },
selinux: { 'enabled' => true },
},
service_provider: 'systemd',
}
end

Expand Down
1 change: 1 addition & 0 deletions spec/unit/classes/master/puppetdb_conf_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
context "on #{os}" do
let(:facts) do
facts.merge(puppetversion: Puppet.version,
service_provider: 'systemd',
selinux: false)
end

Expand Down
1 change: 1 addition & 0 deletions spec/unit/classes/master/report_processor_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
context "on #{os}" do
let(:facts) do
facts.merge(puppetversion: Puppet.version,
service_provider: 'systemd',
clientcert: 'test.domain.local')
end

Expand Down
1 change: 1 addition & 0 deletions spec/unit/classes/server/command_processing_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
family: 'OpenBSD',
},
puppetversion: Puppet.version,
service_provider: 'systemd',
}
end

Expand Down
1 change: 1 addition & 0 deletions spec/unit/classes/server/database_ini_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
networking: {
fqdn: 'test.domain.local',
},
service_provider: 'systemd',
}
end

Expand Down
1 change: 1 addition & 0 deletions spec/unit/classes/server/db_connection_uri_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
networking: {
fqdn: 'test.domain.local',
},
service_provider: 'systemd',
}
end

Expand Down
1 change: 1 addition & 0 deletions spec/unit/classes/server/db_read_uri_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
networking: {
fqdn: 'test.domain.local',
},
service_provider: 'systemd',
}
end

Expand Down
1 change: 1 addition & 0 deletions spec/unit/classes/server/global_ini_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
networking: {
fqdn: 'foo.com',
},
service_provider: 'systemd',
}
end

Expand Down
1 change: 1 addition & 0 deletions spec/unit/classes/server/jetty_ini_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
networking: {
fqdn: 'test.domain.local',
},
service_provider: 'systemd',
}
end

Expand Down
1 change: 1 addition & 0 deletions spec/unit/classes/server/puppetdb_ini_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
networking: {
fqdn: 'test.domain.local',
},
service_provider: 'systemd',
}
end

Expand Down
1 change: 1 addition & 0 deletions spec/unit/classes/server/read_database_ini_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
networking: {
fqdn: 'test.domain.local',
},
service_provider: 'systemd',
}
end

Expand Down
1 change: 1 addition & 0 deletions spec/unit/classes/server_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
context "on #{os}" do
let(:facts) do
facts.merge(puppetversion: Puppet.version,
service_provider: 'systemd',
selinux: true)
end

Expand Down