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