Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selinux: remove runtime disable message in the install_policy.sh script

We are in the process of deprecating the runtime disable mechanism,
let's not reference it in the scripts.

Signed-off-by: Paul Moore <paul@paul-moore.com>

+1 -2
+1 -2
scripts/selinux/install_policy.sh
··· 31 31 if selinuxenabled; then 32 32 echo "SELinux is already enabled" 33 33 echo "This prevents safely relabeling all files." 34 - echo "Boot with selinux=0 on the kernel command-line or" 35 - echo "SELINUX=disabled in /etc/selinux/config." 34 + echo "Boot with selinux=0 on the kernel command-line." 36 35 exit 1 37 36 fi 38 37