2022-12-06 15:44:25 +01:00
|
|
|
#!/bin/sh
|
|
|
|
#set -xeo pipefail
|
|
|
|
|
|
|
|
# Run the installer
|
|
|
|
yes | setup-alpine -e -f install.conf
|
|
|
|
|
|
|
|
# Copy ssh keys
|
|
|
|
echo "Copy packer ssh key"
|
|
|
|
mount /dev/vg0/lv_root /mnt
|
|
|
|
cp -rp .ssh /mnt/root/
|
|
|
|
sync
|
|
|
|
umount /mnt
|
|
|
|
|
2023-06-27 15:25:30 +02:00
|
|
|
|
2022-12-06 15:44:25 +01:00
|
|
|
echo "Rebooting the host after install"
|
|
|
|
reboot -nf
|