2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-30 01:26:38 +00:00

probe_utils: remove extraneous else block

This commit is contained in:
Kurt H Maier 2019-05-07 13:52:34 -07:00
parent e8fbb1e8af
commit 59f8845d37

View File

@ -262,8 +262,6 @@ sub is_selinux_enforcing {
elsif (/Enforcing/) { $retval = 1; }
else { $retval = 0; }
}
} else {
$retval = 0;
}
return $retval;
}