Sha256: d2df36404c90c5ed9e1d31a41f914411ba81a9a0c2489e06a998a56c44880699
Contents?: true
Size: 695 Bytes
Versions: 30
Compression:
Stored size: 695 Bytes
Contents
require 'r10k/cli/deploy' require 'cri' module R10K::CLI module Synchronize def self.command @cmd ||= Cri::Command.define do name 'synchronize' usage 'synchronize <options>' summary 'DEPRECATED: Fully synchronize all environments' required :c, :config, 'Specify a configuration file' be_hidden run do |opts, args, cmd| logger.warn "#{cmd.name} is deprecated; please use `r10k deploy environment --puppetfile`" opts.merge!({:puppetfile => true}) R10K::CLI::Deploy::Environment.command.block.call(opts,args,cmd) end end end end self.command.add_command(Synchronize.command) end
Version data entries
30 entries across 30 versions & 1 rubygems