vms/recipes/alpine/provisionning/alpine-3.16-install.sh

15 lines
251 B
Bash
Raw Normal View History

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