You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
222 B

#!/usr/bin/env bash
DESC="Configuration en routage statique."
run() {
requireSshGuests $SYSTEMS
L=""
for s in $SYSTEMS; do
f="config$(echo $s | tr [:lower:] [:upper:])"
L="$L $f"
done
vdn-scripts $L
}