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:
parent
e736220c84
commit
4cf5876a7c
1 changed files with 4 additions and 1 deletions
|
@ -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 {
|
||||||
|
|
Loading…
Reference in a new issue