puppet-cinder/manifests/db/sync.pp
Drew Fisher ecd295ae57 Remove POSIX users, groups, and file modes.
These entries should be removed from the manifests as these settings should be delivered by packaging tools.

Change-Id: I0fb78afeb3b78b66d9f20542f0465116ff531483
Closes-Bug: #1458915
2015-06-22 08:18:03 -06:00

15 lines
305 B
Puppet

#
class cinder::db::sync {
include ::cinder::params
exec { 'cinder-manage db_sync':
command => $::cinder::params::db_sync_command,
path => '/usr/bin',
user => 'cinder',
refreshonly => true,
require => Class['cinder'],
logoutput => 'on_failure',
}
}