diff options
-rwxr-xr-x | scripts/arch_install_script.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/arch_install_script.sh b/scripts/arch_install_script.sh index 2d0d695..3f99ec9 100755 --- a/scripts/arch_install_script.sh +++ b/scripts/arch_install_script.sh | |||
@@ -9,7 +9,9 @@ rm -rf $CODE_PATH | |||
9 | pacman-key --init | 9 | pacman-key --init |
10 | pacman-key --populate archlinux | 10 | pacman-key --populate archlinux |
11 | 11 | ||
12 | git clone -b $git_branch --recursive https://git.immae.eu/perso/Immae/Projets/Puppet.git $CODE_PATH | 12 | git clone -b $git_branch https://git.immae.eu/perso/Immae/Projets/Puppet.git $CODE_PATH |
13 | cd $CODE_PATH | ||
14 | git submodule update --init | ||
13 | 15 | ||
14 | export FACTER_in_chroot="yes" | 16 | 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 | 17 | puppet apply --environment $environment --tags base_installation --modulepath $CODE_PATH/modules:$CODE_PATH/external_modules --test $CODE_PATH/manifests/site.pp |