commit issue.sh

This commit is contained in:
2022-01-28 20:20:05 +00:00
parent 4115931d30
commit 0d724069f1

View File

@@ -0,0 +1,13 @@
#!/bin/sh
echo "Starting certificate issue process";
# loop through the directories
for dir in */ ; do
echo "Entering ${dir}";
# run the issue script in each dir
(cd "${dir}" && ./issue.sh);
done;
echo "Finished certificate issue process";