Răsfoiți Sursa

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

Juan RP 11 ani în urmă
părinte
comite
ef81fb90f8
1 a modificat fișierele cu 3 adăugiri și 1 ștergeri
  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