Explorar el Código

Use fast DH params when creating certs

Otherwise installation on low power systems takes way too long
Bob Mottram hace 10 años
padre
commit
8ad0b9dbe5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      src/freedombone-addcert

+ 1
- 1
src/freedombone-addcert Ver fichero

@@ -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