13 lines
247 B
Text
13 lines
247 B
Text
|
#!/bin/sh
|
||
|
|
||
|
outfile="$1"; shift
|
||
|
|
||
|
(
|
||
|
for host in "$@"; do
|
||
|
hosts="$hosts $host"
|
||
|
cdist config -c ~/p/cdist-nutzung -p $hosts
|
||
|
done
|
||
|
) | tee "$outfile"
|
||
|
echo "----------"
|
||
|
grep 'INFO: Total processing time for' "$outfile" | sed 's/.*: //'
|