Init puppet setup

This commit is contained in:
Jake Howard 2017-08-12 13:17:55 +01:00
parent c286c4c3be
commit da1addc08c
Signed by: jake
GPG Key ID: 57AFB45680EDD477
2 changed files with 10 additions and 0 deletions

3
manifests/main.pp Normal file
View File

@ -0,0 +1,3 @@
node default {
include yaourt
}

View File

@ -0,0 +1,7 @@
class yaourt {
package {[
"firefox-beta"
]:
ensure => latest
}
}