281e111e58
Improve readability of swift::xfs using ensure_packages from the stdlib. Change-Id: I9550c6e9415e49b5363e21c73c935390c3a635e3
10 lines
144 B
Puppet
10 lines
144 B
Puppet
#
|
|
# package dependencies for creating
|
|
# xfs partitions
|
|
class swift::xfs {
|
|
|
|
$packages = ['xfsprogs', 'parted']
|
|
ensure_packages($packages)
|
|
|
|
}
|