13 lines
247 B
Bash
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"; |