forked from ungleich-public/cdist
b76c4a5105
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
12 lines
252 B
Bash
Executable file
12 lines
252 B
Bash
Executable file
#!/bin/sh
|
|
|
|
outfile="$1"; shift
|
|
|
|
(
|
|
for host in "$@"; do
|
|
hosts="$hosts $host"
|
|
cdist config -c ~/p/cdist-nutzung -p $hosts 2>&1
|
|
done
|
|
) | tee "$outfile"
|
|
echo "----------"
|
|
grep 'INFO: Total processing time for' "$outfile" | sed 's/.*: //'
|