2017-08-12 18:47:17 +01:00
|
|
|
class config::git {
|
|
|
|
file { '/home/jake/.gitignore_global':
|
|
|
|
ensure => file,
|
2017-10-08 18:52:37 +01:00
|
|
|
mode => '0644',
|
2017-08-12 18:47:17 +01:00
|
|
|
source => 'puppet:///modules/config/gitignore_global'
|
|
|
|
}
|
|
|
|
|
2017-10-08 18:52:37 +01:00
|
|
|
git::config { 'global ignore' :
|
2017-08-12 18:47:17 +01:00
|
|
|
key => 'core.excludesfile',
|
|
|
|
value => '/home/jake/.gitignore_global',
|
2017-10-08 18:52:37 +01:00
|
|
|
user => 'jake'
|
2017-08-12 18:47:17 +01:00
|
|
|
}
|
|
|
|
}
|