diff --git a/manifests/main.pp b/manifests/main.pp new file mode 100644 index 0000000..fa64d55 --- /dev/null +++ b/manifests/main.pp @@ -0,0 +1,3 @@ +node default { + include yaourt +} diff --git a/modules/yaourt/manifests/init.pp b/modules/yaourt/manifests/init.pp new file mode 100644 index 0000000..7f1b32d --- /dev/null +++ b/modules/yaourt/manifests/init.pp @@ -0,0 +1,7 @@ +class yaourt { + package {[ + "firefox-beta" + ]: + ensure => latest + } +}