2024-04-22 14:17:15 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
|
|
set -o nounset
|
|
|
|
|
set -o errexit
|
|
|
|
|
|
|
|
|
|
host="${1}" ; shift
|
|
|
|
|
|
|
|
|
|
pacman -Sy --noconfirm git # yes its a partial upgrade, but thats just the live cd
|
|
|
|
|
|
|
|
|
|
cd /root
|
|
|
|
|
git clone --recursive https://code.hkoerber.de/hannes/dotfiles.git
|
|
|
|
|
|
2024-05-02 17:10:45 +02:00
|
|
|
./dotfiles/install_scripts/"${host}".sh
|
2024-04-22 14:17:15 +02:00
|
|
|
|
|
|
|
|
mv /root/dotfiles /mnt/var/lib/dotfiles
|
|
|
|
|
|
2024-05-02 17:10:45 +02:00
|
|
|
read -rp "> Ready for reboot. Press enter for shutdown, then remove the installation media and boot again "
|
2024-04-22 14:17:15 +02:00
|
|
|
|
|
|
|
|
poweroff
|