projects
/
chef.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Switch back to the OSM overpass instance
[chef.git]
/
test
/
integration
/
nginx
/
serverspec
/
nginx_spec.rb
1
require "serverspec"
2
3
# Required by serverspec
4
set :backend, :exec
5
6
describe package("nginx") do
7
it { should be_installed }
8
end
9
10
describe service("nginx") do
11
it { should be_enabled }
12
it { should be_running }
13
end
14
15
describe port(8050) do
16
it { should be_listening.with("tcp") }
17
end