]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blob - scripts/ovh_vps_ssd/arch_chroot_script.sh
Populate keyring at install
[perso/Immae/Projets/Puppet.git] / scripts / ovh_vps_ssd / arch_chroot_script.sh
1 #!/bin/bash
2
3 pacman-key --init
4 pacman-key --populate archlinux
5
6 UUID=$(cat /device_uuid)
7 PART="/dev/disk/by-uuid/$UUID"
8 DEVICE=$(realpath "$PART")
9
10 # mkfs.ext4 -F -U "$UUID" "$DEVICE"
11 mount "$DEVICE" /mnt
12
13 ##### FIXME: mkfs.ext4 would be better ####
14 for i in /mnt/*; do
15 if [ "$i" = "/mnt/boot" ]; then
16 # keep /boot/grub
17 rm -f $i/*
18 else
19 rm -rf $i
20 fi
21 done
22 ##### /FIXME ####
23
24 pacstrap -G /mnt base git puppet
25
26 echo "$PART / auto defaults 0 1" > /mnt/etc/fstab
27
28 umount /mnt
29