Sha256: aa9cd5c053dbe424cba488e1d4e04ad8ef9b76e1ed28a869cbdf45a274594aa5

Contents?: true

Size: 946 Bytes

Versions: 10

Compression:

Stored size: 946 Bytes

Contents

class Subspace::Commands::Bootstrap < Subspace::Commands::Base
  def initialize(args, options)
    @host_spec = args.first
    @ask_pass = options.password
    @yum = options.yum
    run
  end

  def run
    # ansible atlanta -m copy -a "src=/etc/hosts dest=/tmp/hosts"
    install_python
    ensure_ssh_dir
  end

  private

  def ensure_ssh_dir
    cmd = ["ansible",
      @host_spec,
      "-m",
      "file",
      "-a",
      "path=/home/{{ansible_ssh_user}}/.ssh state=directory mode=0700",
      "-vvvv"
    ]
    bootstrap_command cmd
  end

  def install_python
    update_ansible_cfg
    cmd = ["ansible",
      @host_spec,
      "-m",
      "raw",
      "-a",
      "test -e /usr/bin/python || (apt -y update && apt install -y python-minimal)",
      "--become",
      "-vvvv"
    ]
    bootstrap_command cmd
  end

  def bootstrap_command(cmd)
    if @ask_pass
      cmd.push("--ask-pass")
    end
    ansible_command *cmd
  end

end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
subspace-1.0.3 lib/subspace/commands/bootstrap.rb
subspace-1.0.2 lib/subspace/commands/bootstrap.rb
subspace-1.0.1 lib/subspace/commands/bootstrap.rb
subspace-1.0.0 lib/subspace/commands/bootstrap.rb
subspace-0.6.17 lib/subspace/commands/bootstrap.rb
subspace-0.6.16 lib/subspace/commands/bootstrap.rb
subspace-0.6.15 lib/subspace/commands/bootstrap.rb
subspace-0.5.15 lib/subspace/commands/bootstrap.rb
subspace-0.5.14 lib/subspace/commands/bootstrap.rb
subspace-0.4.14 lib/subspace/commands/bootstrap.rb