Sha256: c0eb281f9e58c88a2d04acd78b7c41637fc5dbac096a703140660e51352fc112
Contents?: true
Size: 1.69 KB
Versions: 1
Compression:
Stored size: 1.69 KB
Contents
require 'ansible-powerplay' include Powerplay::DSL module Powerplay module Cli class Main < Thor class_option :verbose, type: :numeric, banner: '[1|2|3]', aliases: '-v', default: 0 desc 'play [script]', 'Run the powerplay script.' long_desc <<-LONGDESC Plays a PowerPlay script. The entries in the script, as specified inside of a group, are run in parallel by default. if [script] is not given, it defaults to 'stack.play' in the current directory. LONGDESC option :tmux, type: :numeric, lazy_default: 0, aliases: '-m', banner: "[WINDOWNUMBERopt] Send output to all tmux panes in the current window, or the numeric window specified." option :play, type: :array, aliases: '-p', banner: "[NAME[ NAME2...]|all] Which playbook shelves", required: true option :group, type: :array, aliases: '-g', banner: "[NAME[ NAME2...]|all] Which groups to execute", default: [:all] option :congroups, type: :boolean, aliases: '-c', banner: "Run the groups themselves concurrently" option :book, type: :array, aliases: '-b', banner: "[NAME[ NAME2...]|all] Which books to execute", default: [:all] option :dryrun, type: :boolean, aliases: '-u', banner: "Dry run, do not actually execute." def play(script = 'stack.play') DSL::_global[:options] = options puts "script %s " % [script] if DSL::_global[:options][:verbose] >= 1 load script, true pp DSL::_global if DSL::_verbosity >= 3 Play::Ansible::power_run end desc 'ttys', 'list all the TMUX ptys on the current window.' def ttys puts Play::Tmux::pane_ptys end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ansible-powerplay-0.2.0 | lib/ansible-powerplay/cli.rb |