diff options
Diffstat (limited to 'systemd/fedora-import-state')
-rwxr-xr-x | systemd/fedora-import-state | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/systemd/fedora-import-state b/systemd/fedora-import-state new file mode 100755 index 00000000..a853ab9c --- /dev/null +++ b/systemd/fedora-import-state @@ -0,0 +1,14 @@ +#!/bin/bash +# fedora-import-state: import state files from initramfs (e.g. network config) + +# exit early if root isn't writeable +[ -w / ] || exit 0 + +# copy state into root +cd /run/initramfs/state +cp -a -t / . + +# run restorecon on the copied files +if [ -e /sys/fs/selinux/enforce ]; then + find . | ( cd /; restorecon -i -f -; ) || : +fi |