
puppetlabs-stdlib deprecated the existing functions in favor of the new stdlib:: functions in 9.0.0. The version was released a few years ago and now we assume we are ready to adopt to the migration. Change-Id: I5369f25ddd0c985b6fc847d79ecdfeff12dacfff Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
12 lines
175 B
Puppet
12 lines
175 B
Puppet
#
|
|
# package dependencies for creating
|
|
# xfs partitions
|
|
class swift::xfs {
|
|
|
|
include swift::deps
|
|
|
|
$packages = ['xfsprogs', 'parted']
|
|
stdlib::ensure_packages($packages)
|
|
|
|
}
|