gsb2021/gsbchk
2021-01-04 22:49:46 +01:00

15 lines
209 B
Bash
Executable File

#!/bin/bash
filename=/root/tools/ansible/gsb/goss/$HOSTNAME.yaml
if ! [ -e $filename ] ; then
echo gsbchk : erreur ouverture $filename
exit 1
fi
if [ $# == 1] ; then
goss -g $filename v
else
goss $*
fi