
This fixes a few lint warnings/errors detected by the following plugins we aim to enable soon. - puppet-lint-file_ensure-check - puppet-lint-trailing_comma-check - puppet-lint-topscope-variable-check Change-Id: Iec7e1c83a461c8b018938195312d02b578e67365 Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
44 lines
986 B
Puppet
44 lines
986 B
Puppet
#
|
|
# Configures dependencies that are common for all storage
|
|
# types.
|
|
# - installs an rsync server
|
|
# - installs required packages
|
|
#
|
|
# == Parameters
|
|
# [*storage_local_net_ip*] ip address that the swift servers should
|
|
# bind to. Required.
|
|
#
|
|
# [*rsync_use_xinetd*]
|
|
# (optional) Override whether to use xinetd to manage rsync service
|
|
# Defaults to swift::params::xinetd_available
|
|
#
|
|
# == Dependencies
|
|
#
|
|
# == Examples
|
|
#
|
|
# == Authors
|
|
#
|
|
# Dan Bode dan@puppetlabs.com
|
|
#
|
|
# == Copyright
|
|
#
|
|
# Copyright 2011 Puppetlabs Inc, unless otherwise noted.
|
|
#
|
|
class swift::storage(
|
|
$storage_local_net_ip,
|
|
$rsync_use_xinetd = $swift::params::xinetd_available,
|
|
) inherits swift::params {
|
|
|
|
include swift::deps
|
|
|
|
if $rsync_use_xinetd and ! $swift::params::xinetd_available {
|
|
fail('xinetd is not available in this distro')
|
|
}
|
|
|
|
ensure_resource('class', 'rsync::server', {
|
|
'use_xinetd' => $rsync_use_xinetd,
|
|
'address' => $storage_local_net_ip,
|
|
'use_chroot' => 'no',
|
|
})
|
|
}
|