Преглед на файлове

dracut/copy-initramfs.sh: only run this with systemd.

Juan RP преди 11 години
родител
ревизия
ef81fb90f8
променени са 1 файла, в които са добавени 3 реда и са изтрити 1 реда
  1. 3 1
      dracut/copy-initramfs.sh

+ 3 - 1
dracut/copy-initramfs.sh

@@ -4,4 +4,6 @@
 
 # Copy the initramfs back to the new rootfs for proper shutdown.
 KVER=$(uname -r)
-cp /run/initramfs/live/boot/initrd $NEWROOT/boot/initramfs-${KVER}.img
+if [ -x /usr/bin/systemctl ]; then
+    cp /run/initramfs/live/boot/initrd $NEWROOT/boot/initramfs-${KVER}.img
+fi