serverspec 0.5.0 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lib/serverspec/version.rb
CHANGED
|
@@ -215,17 +215,17 @@ end
|
|
|
215
215
|
shared_examples_for 'support command check_selinux' do
|
|
216
216
|
context 'enforcing' do
|
|
217
217
|
subject { commands.check_selinux('enforcing') }
|
|
218
|
-
it { should eq "getenforce | grep -i -- enforcing" }
|
|
218
|
+
it { should eq "getenforce | grep -i -- enforcing && grep -i -- SELINUX=enforcing /etc/selinux/config" }
|
|
219
219
|
end
|
|
220
220
|
|
|
221
221
|
context 'permissive' do
|
|
222
222
|
subject { commands.check_selinux('permissive') }
|
|
223
|
-
it { should eq "getenforce | grep -i -- permissive" }
|
|
223
|
+
it { should eq "getenforce | grep -i -- permissive && grep -i -- SELINUX=permissive /etc/selinux/config" }
|
|
224
224
|
end
|
|
225
225
|
|
|
226
226
|
context 'disabled' do
|
|
227
227
|
subject { commands.check_selinux('disabled') }
|
|
228
|
-
it { should eq "getenforce | grep -i -- disabled" }
|
|
228
|
+
it { should eq "getenforce | grep -i -- disabled && grep -i -- SELINUX=disabled /etc/selinux/config" }
|
|
229
229
|
end
|
|
230
230
|
end
|
|
231
231
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: serverspec
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-06-
|
|
12
|
+
date: 2013-06-06 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: net-ssh
|