Sha256: 1136e7875bd220cca731f25e6c1a69cb5acd1b8cdf2f92a80244ecd816608838
Contents?: true
Size: 1.18 KB
Versions: 5
Compression:
Stored size: 1.18 KB
Contents
module Actions module SccManager class Sync < Actions::EntryAction def plan(scc_account) ::Foreman::Logging.logger('foreman_scc_manager') .info("Initiating 'sync' for SccAccount '#{scc_account.name}'.") action_subject(scc_account) sequence do sync_repo_action = plan_action(::Actions::SccManager::SyncRepositories, scc_account) sync_prod_action = plan_action(::Actions::SccManager::SyncProducts, scc_account) plan_self(repo_status: sync_repo_action.output[:status], prod_status: sync_prod_action.output[:status]) end scc_account.update! sync_status: 'running' end def finalize scc_account = SccAccount.find(input[:scc_account][:id]) if input[:repo_status] == 'SUCCESS' && input[:prod_status] == 'SUCCESS' scc_account.sync_status = 'successful' scc_account.synced = DateTime.current else scc_account.sync_status = 'failed' end scc_account.save! end def rescue_strategy Dynflow::Action::Rescue::Fail end def humanized_name _('Sync SUSE subscriptions') end end end end
Version data entries
5 entries across 5 versions & 1 rubygems