mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralgw.git
synced 2025-10-30 02:12:29 +00:00
10 lines
198 B
Bash
Executable File
10 lines
198 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
start=11
|
|
finish=50
|
|
cert_life=365
|
|
|
|
for i in `eval echo {$start..$finish}`
|
|
do
|
|
openssl x509 -signkey server-key.pem -in server.csr -req -days $cert_life -out dev-$i-cert.pem
|
|
done |