Sha256: bd411e8d0f8cccf206695bc0caec7d777377c63435145de7f56118aa286888d7
Contents?: true
Size: 614 Bytes
Versions: 42
Compression:
Stored size: 614 Bytes
Contents
require 'spec_helper' include SpecInfra::Helper::Gentoo describe selinux do it { should be_enforcing } 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" } 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)" } end
Version data entries
42 entries across 42 versions & 1 rubygems