aboutsummaryrefslogtreecommitdiff
path: root/scripts/arch_install_script.sh
blob: 21e202f35af8452cd3b1bb264dd478a31c902e6c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash

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

rm -rf $CODE_PATH

git clone -b $git_branch --recursive https://git.immae.eu/perso/Immae/Projets/Puppet.git $CODE_PATH
puppet apply --environment $environment --tags base_installation --test $CODE_PATH/manifests/site.pp
# The password seed requires puppet to be run twice
puppet apply --environment $environment --tags base_installation --test $CODE_PATH/manifests/site.pp