You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cortex/gen-cert.sh

9 lines
209 B

#!/bin/sh
# 5 years should be good
VALIDITY=1825
echo "Deleting old cortex_cert..."
keytool -delete -alias cortex_cert
echo "Generating new cortex_cert"
keytool -genkey -alias cortex_cert -validity $VALIDITY