packstack/puppet/templates/swift_common.pp
Derek Higgins c072b5c4ef disable selinux on swift servers
rsync is causing AVC's, need to look into fixing this long term
2012-11-23 05:27:12 -05:00

15 lines
319 B
Puppet

class { 'ssh::server::install': }
class { 'swift':
# not sure how I want to deal with this shared secret
swift_hash_suffix => 'swift_shared_secret',
package_ensure => latest,
}
# We need to disable this while rsync causes AVC's
exec{'setenforce 0':
path => '/usr/sbin',
notify => Class['swift']
}