# # Class to execute nova api_db sync # # ==Parameters # # [*extra_params*] # (optional) String of extra command line parameters to append # to the nova-manage db sync command. These will be inserted in # the command line between 'nova-manage' and 'db sync'. # Defaults to undef # class nova::db::sync_api( $extra_params = undef, ) { include ::nova::deps include ::nova::params exec { 'nova-db-sync-api': command => "/usr/bin/nova-manage ${extra_params} api_db sync", refreshonly => true, logoutput => on_failure, subscribe => [ Anchor['nova::install::end'], Anchor['nova::config::end'], Anchor['nova::dbsync_api::begin'] ], notify => Anchor['nova::dbsync_api::end'], } }