Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
123456789 |
- #!/usr/bin/env bash
-
- SYSPROPS_FILE=${DATADIR}/system.properties
- if [ -f "${SYSPROPS_FILE}" ]; then
- SYSPROPS_PORT=`grep "^unifi.https.port=" ${SYSPROPS_FILE} | cut -d'=' -f2`
- fi
- PORT=${SYSPROPS_PORT:-8443}
-
- curl --max-time 5 -kILs --fail https://localhost:${PORT}
|