Sha256: 39f4fd31d111e764983c5c7bdf2e1bef3530c3c382a5a3d7ff6838fb08657c1d

Contents?: true

Size: 627 Bytes

Versions: 5

Compression:

Stored size: 627 Bytes

Contents

#!/bin/bash

#/ NAME
#/     ao-hosts -- list of opsdb hosts filtered through Capfile
#/
#/ SYNOPSIS
#/     ao hosts [deploy_set...]

# figure out the project root under which bin, lib live
shome="$(cd -P -- "$(dirname -- "$BASH_SOURCE")/.." && pwd -P)"

# load a jason bourne library
source "$shome/sbin/_treadstone"

# parse the command-line

# entry point
function main {
  export LOCAL_ONLY=true
  {
    if [[ -n $1 ]]; then
      set -- $(for a in "$@"; do echo $a.echo; done)
      cap "$@"
    fi
  } 2>&1 | grep eea914aaa8dde6fdae29242b1084a2b0415eefaf | awk '{print $NF}' | sort -u
}

require 'sub' "$BASH_SOURCE" "$@"

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
alpha_omega-1.2.1 libexec/ao-hosts
alpha_omega-1.2.0 libexec/ao-hosts
alpha_omega-1.1.11 libexec/ao-hosts
alpha_omega-1.1.10 libexec/ao-hosts
alpha_omega-1.1.9 libexec/ao-hosts