mirror of
https://github.com/xcat2/confluent.git
synced 2024-11-23 01:53:28 +00:00
086def0bb8
Bring in and let ignition do the driving if the import had one.
7 lines
269 B
Bash
7 lines
269 B
Bash
#!/bin/sh
|
|
ln -s $1/images/pxeboot/vmlinuz $2/boot/kernel && \
|
|
ln -s $1/images/pxeboot/initrd.img $2/boot/initramfs/distribution && \
|
|
ln -s $1/images/ignition.img $2/boot/initramfs/ignition.img && \
|
|
mkdir -p $2/boot/efi/boot/ && \
|
|
ln -s $1/images/pxeboot/rootfs.img $2/
|