]> git.immae.eu Git - perso/Immae/Projets/Puppet.git/commitdiff
Don’t recursively clone submodules
authorIsmaël Bouya <ismael.bouya@normalesup.org>
Sat, 30 Jun 2018 16:24:44 +0000 (18:24 +0200)
committerIsmaël Bouya <ismael.bouya@normalesup.org>
Sat, 30 Jun 2018 16:24:44 +0000 (18:24 +0200)
scripts/arch_install_script.sh

index 2d0d695514c6797c9119e889c11b53c1f4f3ca7b..3f99ec997ba516e9025253773c4deb61f275a795 100755 (executable)
@@ -9,7 +9,9 @@ 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
+git clone -b $git_branch https://git.immae.eu/perso/Immae/Projets/Puppet.git $CODE_PATH
+cd $CODE_PATH
+git submodule update --init
 
 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