Browse Source

Use fast DH params when creating certs

Otherwise installation on low power systems takes way too long
Bob Mottram 9 years ago
parent
commit
8ad0b9dbe5
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/freedombone-addcert

+ 1
- 1
src/freedombone-addcert View File

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