add initial travis integration

add travis button to README
This commit is contained in:
Niels Abspoel
2018-12-22 16:28:18 +01:00
parent ec7984ca02
commit 45394feb99
6 changed files with 131 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
control 'salt packages' do
title 'should be installed'
describe package('salt-master') do
it { should be_installed }
end
describe package('salt-minion') do
it { should be_installed }
end
end
+14
View File
@@ -0,0 +1,14 @@
control 'salt services' do
title 'should be running'
describe service('salt-master') do
it { should be_enabled }
it { should be_running }
end
describe service('salt-minion') do
it { should be_enabled }
it { should be_running }
end
end