From 89bc7608f1b0ff38e15440b2b95bfa3f76bcab4e Mon Sep 17 00:00:00 2001 From: immarvin Date: Thu, 25 May 2017 05:30:30 -0400 Subject: [PATCH] fix issue RHEL update caused boot failure due to selinux #2996 --- xCAT-server/lib/xcat/plugins/anaconda.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xCAT-server/lib/xcat/plugins/anaconda.pm b/xCAT-server/lib/xcat/plugins/anaconda.pm index 0222362ba..5b61b8326 100644 --- a/xCAT-server/lib/xcat/plugins/anaconda.pm +++ b/xCAT-server/lib/xcat/plugins/anaconda.pm @@ -859,7 +859,7 @@ sub mknetboot } # turn off the selinux - if ($osver =~ m/fedora12/ || $osver =~ m/fedora13/) { + if ($osver =~ m/(fedora12|fedora13|rhels7)/) { $kcmdline .= " selinux=0 "; }