garm-provider-edge-connect/mockprovider.sh
Christopher Hase 8884165ffe
Some checks failed
Go Tests / go-tests (push) Failing after 1m6s
feat(client): test environment
2025-09-05 11:24:01 +02:00

13 lines
288 B
Bash
Executable file

#!/bin/sh
LOG_FILE=./mock.log
env | sort | grep -v PASSWORD >> $LOG_FILE
echo Parameters $@ >> $LOG_FILE
while read line
do
echo stdin "$line" >> $LOG_FILE
done < "/dev/stdin"
echo ======================================================================================= >> $LOG_FILE