aboutsummaryrefslogtreecommitdiff
path: root/scripts/arch_install_script.sh
blob: 2d0d695514c6797c9119e889c11b53c1f4f3ca7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/bash

git_branch="$1"
environment="$2"
CODE_PATH="/etc/puppetlabs/code"

rm -rf $CODE_PATH

pacman-key --init
pacman-key --populate archlinux

git clone -b $git_branch --recursive https://git.immae.eu/perso/Immae/Projets/Puppet.git $CODE_PATH

export FACTER_in_chroot="yes"
puppet apply --environment $environment --tags base_installation --modulepath $CODE_PATH/modules:$CODE_PATH/external_modules --test $CODE_PATH/manifests/site.pp
# The password seed requires puppet to be run twice
puppet apply --environment $environment --tags base_installation --modulepath $CODE_PATH/modules:$CODE_PATH/external_modules --test $CODE_PATH/manifests/site.pp