add start and end date/time to main.sh

This commit is contained in:
nervuri 2021-04-29 16:08:57 +00:00
parent c6b971e521
commit 8228cb81a5
Signed by: nervuri
GPG Key ID: C4769EEA7BA61672
1 changed files with 4 additions and 0 deletions

View File

@ -7,6 +7,8 @@ set -o errexit # (-e) exit immediately if any command has a non-zero exit statu
# Go where this script is.
cd "$(dirname "$0")" || exit
echo "Start -> $(date --utc)"
echo '=== get hosts ==='
./get-hosts.sh
@ -26,3 +28,5 @@ echo '=== Amfora ==='
amfora/generate-trust-store.sh
echo '=== Lagrange ==='
lagrange/generate-trust-store.sh
echo "End -> $(date --utc)"