2
0
mirror of https://github.com/proffalken/ansible-openhab synced 2026-01-11 23:08:47 +01:00

Initial import of the role after tidying it up

This commit is contained in:
Matthew Macdonald-Wallace
2016-05-01 12:44:50 +01:00
commit 6b3ced4755
18 changed files with 363 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
require 'serverspec'
# Required by serverspec
set :backend, :exec
describe package('openhab') do
it { should be_disabled }
end
describe service('openhab') do
it { should be_enabled }
it { should be_running }
end
describe port(80) do
it { should be_listening }
end
describe port(443) do
it { should be_listening }
end