You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
377 B
11 lines
377 B
#!/bin/sh |
|
# FIXME: load selinux policy. this should really be done after we switchroot |
|
if [ -x "$NEWROOT/usr/sbin/load_policy" ] && [ -e "$NEWROOT/etc/sysconfig/selinux" ]; then |
|
chroot $NEWROOT /usr/sbin/load_policy -i |
|
if [ $? -eq 3 ]; then |
|
echo "Initial SELinux policy load failed and enforcing mode requested." |
|
echo "Not continuing" |
|
sleep 100d |
|
exit 1 |
|
fi |
|
fi
|
|
|