Sha256: c38940b6e57f8400ec46a651455518bf6a4f20dacf43309d0d851e528814f7b8
Contents?: true
Size: 395 Bytes
Versions: 8
Compression:
Stored size: 395 Bytes
Contents
#!/usr/bin/env ruby require 'optparse' require_relative '../lib/simple_provision' options = {} invalid_argument = false invalid_argument = true if ARGV.length != 2 unless invalid_argument username, host = ARGV.last.split('@') invalid_argument = username.nil? || host.nil? end cli = SimpleProvision::CLI.new(profile: ARGV.first, username: username, host: host) cli.bootstrap cli.configure
Version data entries
8 entries across 8 versions & 1 rubygems