WIP RSK cookbook

This commit is contained in:
2021-06-13 16:58:53 +02:00
parent d7af1a57d1
commit 2063f5c953
14 changed files with 308 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
# InSpec test for recipe kosmos_rsk::rskj
# The Chef InSpec reference, with examples and extensive documentation, can be
# found at https://docs.chef.io/inspec/resources/
describe user('rsk') do
it { should exist }
end
describe package('rskj') do
it { should be_installed }
its('version') { should eq '2.2.0' }
end
describe service('rsk') do
it { should be_enabled }
it { should be_installed }
it { should be_running }
end
describe port(4444) do
it { should be_listening }
end