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