
This commit adds support for fedora. It introduces a params namespace class to hold data differences between ubuntu and fedora. It also moves the xfs packages into their own class (swift::xfs)
9 lines
140 B
Puppet
9 lines
140 B
Puppet
#
|
|
# package dependencies for creating
|
|
# xfs partitions
|
|
class swift::xfs {
|
|
package { ['xfsprogs', 'parted']:
|
|
ensure => 'present'
|
|
}
|
|
}
|