]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blame - scripts/ovh_vps_ssd/arch_chroot_script.sh
Add wrapper to caldance app
[perso/Immae/Projets/Puppet.git] / scripts / ovh_vps_ssd / arch_chroot_script.sh
CommitLineData
c15f2234
IB
1#!/bin/bash
2
3pacman-key --init
4pacman-key --populate archlinux
5
6UUID=$(cat /device_uuid)
7PART="/dev/disk/by-uuid/$UUID"
8DEVICE=$(realpath "$PART")
9
10# mkfs.ext4 -F -U "$UUID" "$DEVICE"
11mount "$DEVICE" /mnt
12
2742958f 13##### mkfs.ext4 would be better ####
c15f2234
IB
14for 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
21done
2742958f 22##### / ####
c15f2234 23
4772e48c 24pacstrap -G /mnt base git puppet
c15f2234
IB
25
26echo "$PART / auto defaults 0 1" > /mnt/etc/fstab
27
28umount /mnt
29