From e1db348053e369619822bdfa45cd840464353c6b Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Tue, 30 Jun 2015 09:30:31 -0300 Subject: Fix class locations --- manifests/ikiwiki/packages.pp | 5 ----- manifests/ikiwiki/packages/l10n.pp | 5 ----- manifests/ikiwiki/packages/search.pp | 7 ------- manifests/packages.pp | 5 +++++ manifests/packages/l10n.pp | 5 +++++ manifests/packages/search.pp | 7 +++++++ 6 files changed, 17 insertions(+), 17 deletions(-) delete mode 100644 manifests/ikiwiki/packages.pp delete mode 100644 manifests/ikiwiki/packages/l10n.pp delete mode 100644 manifests/ikiwiki/packages/search.pp create mode 100644 manifests/packages.pp create mode 100644 manifests/packages/l10n.pp create mode 100644 manifests/packages/search.pp diff --git a/manifests/ikiwiki/packages.pp b/manifests/ikiwiki/packages.pp deleted file mode 100644 index f55fcac..0000000 --- a/manifests/ikiwiki/packages.pp +++ /dev/null @@ -1,5 +0,0 @@ -class ikiwiki::packages { - package { 'ikiwiki' ]: - ensure => installed, - } -} diff --git a/manifests/ikiwiki/packages/l10n.pp b/manifests/ikiwiki/packages/l10n.pp deleted file mode 100644 index 797b491..0000000 --- a/manifests/ikiwiki/packages/l10n.pp +++ /dev/null @@ -1,5 +0,0 @@ -class ikiwiki::packages::l10n { - package { [ "po4a" ]: - ensure => installed, - } -} diff --git a/manifests/ikiwiki/packages/search.pp b/manifests/ikiwiki/packages/search.pp deleted file mode 100644 index 4a05335..0000000 --- a/manifests/ikiwiki/packages/search.pp +++ /dev/null @@ -1,7 +0,0 @@ -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, - } -} diff --git a/manifests/packages.pp b/manifests/packages.pp new file mode 100644 index 0000000..f55fcac --- /dev/null +++ b/manifests/packages.pp @@ -0,0 +1,5 @@ +class ikiwiki::packages { + package { 'ikiwiki' ]: + ensure => installed, + } +} 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, + } +} -- cgit v1.2.3