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, 0 insertions, 20 deletions
diff --git a/tozt/yaourt/manifests/init.pp b/tozt/yaourt/manifests/init.pp
deleted file mode 100644
index 871cac8..0000000
--- a/tozt/yaourt/manifests/init.pp
+++ /dev/null
@@ -1,20 +0,0 @@
-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'];
- }
-}