commit renew.sh

This commit is contained in:
2022-01-28 20:19:52 +00:00
parent 8cd36f2060
commit 4115931d30

View File

@@ -0,0 +1,13 @@
#!/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";