17 lines
275 B
Bash
17 lines
275 B
Bash
|
#!/bin/sh
|
||
|
#set -xeo pipefail
|
||
|
|
||
|
# Run the installer
|
||
|
setup-alpine -q
|
||
|
#yes | setup-alpine -e -f /root/install.conf
|
||
|
|
||
|
# 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"
|
||
|
reboot -nf
|