Files
2022-01-28 20:19:52 +00:00

13 lines
247 B
Bash

#!/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";