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

19 lines
283 B
Bash
Raw Normal View History

2022-12-06 15:44:25 +01:00
#!/bin/sh
set -xeo pipefail
# Run the installer
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
apk update
2023-01-04 11:47:18 +01:00
apk add curl jq
2022-12-06 15:44:25 +01:00
echo "Rebooting the host after install"
reboot
2023-01-04 12:24:54 +01:00
sleep 30