diff options
Diffstat (limited to 'manifests/packages')
-rw-r--r-- | manifests/packages/l10n.pp | 5 | ||||
-rw-r--r-- | manifests/packages/search.pp | 7 |
2 files changed, 12 insertions, 0 deletions
diff --git a/manifests/packages/l10n.pp b/manifests/packages/l10n.pp new file mode 100644 index 0000000..797b491 --- /dev/null +++ b/manifests/packages/l10n.pp @@ -0,0 +1,5 @@ +class ikiwiki::packages::l10n { + package { [ "po4a" ]: + ensure => installed, + } +} diff --git a/manifests/packages/search.pp b/manifests/packages/search.pp new file mode 100644 index 0000000..4a05335 --- /dev/null +++ b/manifests/packages/search.pp @@ -0,0 +1,7 @@ +class ikiwiki::packages::search { + # Search support + # http://ikiwiki.info/plugins/search/ + package { [ 'libsearch-xapian-perl', 'libdigest-sha-perl', 'libhtml-scrubber-perl', 'xapian-omega' ]: + ensure => present, + } +} |