dotfiles/modules/config/manifests/git.pp

10 lines
207 B
ObjectPascal
Raw Normal View History

2017-08-12 18:47:17 +01:00
class config::git {
2017-10-17 09:41:56 +01:00
$global_gitignore = '/home/jake/.config/.gitignore'
file { $global_gitignore:
2017-08-12 18:47:17 +01:00
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'
}
}