summaryrefslogtreecommitdiffstats
path: root/tozt/yaourt/manifests/init.pp
diff options
context:
space:
mode:
Diffstat (limited to 'tozt/yaourt/manifests/init.pp')
-rw-r--r--tozt/yaourt/manifests/init.pp20
1 files changed, 20 insertions, 0 deletions
diff --git a/tozt/yaourt/manifests/init.pp b/tozt/yaourt/manifests/init.pp
new file mode 100644
index 0000000..871cac8
--- /dev/null
+++ b/tozt/yaourt/manifests/init.pp
@@ -0,0 +1,20 @@
+class yaourt {
+ package {
+ [
+ "yajl"
+ ]:
+ ensure => 'installed',
+ install_options => ["--asdeps"];
+ }
+
+ package::makepkg { 'package-query':
+ ensure => installed,
+ asdeps => true,
+ require => Package['yajl'];
+ }
+
+ package::makepkg { 'yaourt':
+ ensure => installed,
+ require => Package::Makepkg['package-query'];
+ }
+}