From: Silvio Rhatto Date: Sat, 18 Jun 2016 18:13:41 +0000 (-0300) Subject: Removes ssh-config X-Git-Tag: 0.2.4~141 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=5f458f943a88e4e7137cf8eb78dd7a5b39e23b39;p=hydra.git Removes ssh-config --- diff --git a/share/hydra/ssh-config b/share/hydra/ssh-config deleted file mode 100755 index c30c82f..0000000 --- a/share/hydra/ssh-config +++ /dev/null @@ -1,38 +0,0 @@ -#!/bin/bash -# Thanks to http://paste.debian.net/93242/ - -# Parameters -NODESDIR=${1} -DOMAIN="`hydra $HYDRA config domain`" - -# Syntax check -if [ $# -ne 1 ]; then - echo "Usage: ${0} nodes_dir" - exit 1 -fi - -if [ ! -d ${NODESDIR} ]; then - echo "Not a directory: ${NODESDIR}" - exit 1 -fi - -REGEXP1="\(nodo::vserver::instance\|context\)" -REGEXP2="s/[^\"]*\"//" -REGEXP3="s/\".*//" -REGEXP4="s/[^']*'//" -REGEXP5="s/'.*//" - -ishost=1 - -while read l; do - if [ ! -z "${ishost}" ]; then - host=${l} - unset ishost - else - echo Host ${host}.${DOMAIN} - echo Port 22`printf "%02d" "${l}"` - echo - ishost=1 - fi -done < <(grep -R "${REGEXP1}" ${NODESDIR} | sed -e "${REGEXP2}" -e "${REGEXP3}" \ - -e "${REGEXP4}" -e "${REGEXP5}")