summaryrefslogtreecommitdiffstats
path: root/manifests/brick/ext4.pp
diff options
context:
space:
mode:
authorJames Shubin <james@shubin.ca>2012-07-26 16:03:52 -0400
committerJames Shubin <james@shubin.ca>2012-07-26 16:03:52 -0400
commitd079937ce30238fe9c3f89b9bf0700ad7ac6019a (patch)
tree61ba6780338b639dbe21f1396717037d61ebbf57 /manifests/brick/ext4.pp
parent04b30ca4c784e2bfaadeea28f33214e666f1222b (diff)
downloadpuppet-gluster-d079937ce30238fe9c3f89b9bf0700ad7ac6019a.tar.gz
puppet-gluster-d079937ce30238fe9c3f89b9bf0700ad7ac6019a.tar.xz
puppet-gluster-d079937ce30238fe9c3f89b9bf0700ad7ac6019a.zip
Split fs dependencies into separate files.
Diffstat (limited to 'manifests/brick/ext4.pp')
-rw-r--r--manifests/brick/ext4.pp23
1 files changed, 23 insertions, 0 deletions
diff --git a/manifests/brick/ext4.pp b/manifests/brick/ext4.pp
new file mode 100644
index 0000000..3d077f6
--- /dev/null
+++ b/manifests/brick/ext4.pp
@@ -0,0 +1,23 @@
+# Simple? gluster module by James
+# Copyright (C) 2010-2012 James Shubin
+# Written by James Shubin <james@shubin.ca>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+class gluster::brick::ext4 {
+ package { 'e2fsprogs':
+ ensure => present,
+ }
+}
+