Use fast DH params when creating certs

Otherwise installation on low power systems takes way too long
This commit is contained in:
Bob Mottram 2015-12-02 15:07:20 +00:00
parent 009b47f498
commit 8ad0b9dbe5
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ fi
# generate DH params # generate DH params
if [ ! $NODH ]; then if [ ! $NODH ]; then
if [ ! -f /etc/ssl/certs/${CERTFILE}.dhparam ]; then if [ ! -f /etc/ssl/certs/${CERTFILE}.dhparam ]; then
${PROJECT_NAME}-dhparam -h ${CERTFILE} ${PROJECT_NAME}-dhparam -h ${CERTFILE} --fast yes
fi fi
fi fi