aboutsummaryrefslogtreecommitdiffstats
path: root/systemd/fedora-import-state
diff options
context:
space:
mode:
Diffstat (limited to 'systemd/fedora-import-state')
-rwxr-xr-xsystemd/fedora-import-state2
1 files changed, 1 insertions, 1 deletions
diff --git a/systemd/fedora-import-state b/systemd/fedora-import-state
index 7809ca81..07fd5cad 100755
--- a/systemd/fedora-import-state
+++ b/systemd/fedora-import-state
@@ -6,6 +6,6 @@ cd /run/initramfs/state
find . -mindepth 1 -maxdepth 1 -exec cp -av -t / {} \;
# run restorecon on the copied files
-if [ -e /sys/fs/selinux/enforce ]; then
+if [ -e /sys/fs/selinux/enforce -a -x /usr/sbin/restorecon ]; then
find . -mindepth 1 -print0 | { cd / && xargs --null restorecon -i; }
fi