| author | hh |
| Thu, 21 Nov 2019 14:55:10 +0100 | |
| changeset 0 | 5c129dd80d4f |
| permissions | -rwxr-xr-x |
#!/bin/bash for i in `seq 11600 11699`; do for j in 0 1000 2000; do # PROMPT=no DN=auto CN=$((i+j)) openssl req -config /home/local/etc/ssl/hh_ca.cfg -new -out req/$((i+j)).req -keyout keys/$((i+j)).key -nodes CN=$((i+j)) openssl req -config /home/local/etc/ssl/hh_ca.cfg -new -out req/$((i+j)).req -keyout keys/$((i+j)).key -nodes done done