Use the boxen-git-credential for all repositories clones.

This is required since puppet run all the comands as root and the
credential config is only present on the user land.

The lack of this configuration is making clones using https to not
work since the credential is not present for the root.

Closes #286
This commit is contained in:
Rafael Mendonça França 2013-06-11 14:32:40 -03:00
parent e736220c84
commit 4cf5876a7c

View file

@ -39,7 +39,10 @@ Repository {
extra => [ extra => [
'--recurse-submodules' '--recurse-submodules'
], ],
require => Class['git'] require => Class['git'],
config => {
'credential.helper' => "${boxen::config::bindir}/boxen-git-credential"
}
} }
Service { Service {