63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# File 'lib/r10k/cli/deploy.rb', line 63
def self.command
@cmd ||= Cri::Command.define do
name 'module'
usage 'module [module] <module ...>'
summary 'Deploy modules in all environments'
description "`r10k deploy module` Deploys and updates modules inside of Puppet environments.\nIt will load the Puppetfile configurations out of all environments, and will\ntry to deploy the given module names in all environments.\n DESCRIPTION\n\n required :e, :environment, 'Update the modules in the given environment'\n\n runner R10K::Action::CriRunner.wrap(R10K::Action::Deploy::Module)\n end\nend\n"
|