spec/debian/selinux_spec.rb in serverspec-0.6.29 vs spec/debian/selinux_spec.rb in serverspec-0.6.30
- old
+ new
@@ -2,15 +2,15 @@
include Serverspec::Helper::Debian
describe selinux do
it { should be_enforcing }
- its(:command) { should eq "(getenforce | grep -i -- enforcing && grep -i -- ^SELINUX=enforcing$ /etc/selinux/config)" }
+ its(:command) { should eq "getenforce | grep -i -- enforcing && grep -i -- ^SELINUX=enforcing$ /etc/selinux/config" }
end
describe selinux do
it { should be_permissive }
- its(:command) { should eq "(getenforce | grep -i -- permissive && grep -i -- ^SELINUX=permissive$ /etc/selinux/config)" }
+ its(:command) { should eq "getenforce | grep -i -- permissive && grep -i -- ^SELINUX=permissive$ /etc/selinux/config" }
end
describe selinux do
it { should be_disabled }
its(:command) { should eq "test ! -f /etc/selinux/config || (getenforce | grep -i -- disabled && grep -i -- ^SELINUX=disabled$ /etc/selinux/config)" }