Files
puppet-swift/manifests/xfs.pp
Takashi Kajinami 964f0ea134 Switch to namespace sdtlib functions
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>
2025-08-14 18:19:23 +09:00

12 lines
175 B
Puppet

#
# package dependencies for creating
# xfs partitions
class swift::xfs {
include swift::deps
$packages = ['xfsprogs', 'parted']
stdlib::ensure_packages($packages)
}