Files
showcase/automation/certificates/internal/renew.sh

13 lines
247 B
Bash
Raw Normal View History

2022-01-28 20:19:52 +00:00
#!/bin/sh
echo "Starting certificate renew process";
# loop through the directories
for dir in */ ; do
echo "Entering ${dir}";
# run the issue script in each dir
(cd "${dir}" && ./renew.sh);
done;
echo "Finished certificate renew process";