dotfiles/modules/yaourt/manifests/files.pp

17 lines
363 B
ObjectPascal
Raw Normal View History

2017-08-12 14:19:55 +01:00
class yaourt::files () {
2017-10-19 20:49:41 +01:00
file { 'Pacman config':
2017-08-12 14:19:55 +01:00
ensure => file,
2017-10-19 20:49:41 +01:00
source => 'puppet:///modules/yaourt/pacman.conf',
path => '/etc/pacman.conf'
2017-08-12 14:19:55 +01:00
}
2017-10-19 20:49:41 +01:00
file { 'Yaourt config':
2017-08-12 14:19:55 +01:00
ensure => file,
2017-10-08 18:52:37 +01:00
mode => '0644',
owner => 'jake',
group => 'users',
2017-10-19 20:49:41 +01:00
source => 'puppet:///modules/yaourt/.yaourtrc',
path => '/home/jake/.yaourtrc'
2017-08-12 14:19:55 +01:00
}
}