]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/blob - scripts/arch_install_script.sh
Move external modules to other place
[perso/Immae/Projets/Puppet.git] / scripts / arch_install_script.sh
1 #!/bin/bash
2
3 git_branch="$1"
4 environment="$2"
5 CODE_PATH="/etc/puppetlabs/code"
6
7 rm -rf $CODE_PATH
8
9 pacman-key --init
10 pacman-key --populate archlinux
11
12 git clone -b $git_branch --recursive https://git.immae.eu/perso/Immae/Projets/Puppet.git $CODE_PATH
13
14 export FACTER_in_chroot="yes"
15 puppet apply --environment $environment --tags base_installation --modulepath $CODE_PATH/modules:$CODE_PATH/external_modules --test $CODE_PATH/manifests/site.pp
16 # The password seed requires puppet to be run twice
17 puppet apply --environment $environment --tags base_installation --modulepath $CODE_PATH/modules:$CODE_PATH/external_modules --test $CODE_PATH/manifests/site.pp
18