mirror of
https://github.com/smallstep/certificates.git
synced 2024-11-11 07:11:00 +00:00
8 lines
151 B
Bash
8 lines
151 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Download the root certificate and set permissions
|
||
|
step ca certificate $COMMON_NAME $CRT $KEY
|
||
|
chmod 644 $CRT $KEY
|
||
|
|
||
|
step ca root $STEP_ROOT
|