mirror of
https://github.com/saltstack-formulas/salt-formula.git
synced 2026-07-30 20:54:03 +02:00
add initial travis integration
add travis button to README
This commit is contained in:
@@ -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
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user