|
@@ -54,13 +54,20 @@ if [ ${OPT_HELP} = true ]; then
|
|
|
echo ""
|
|
|
echo "Session configuration values: $(snapctl get session -d)"
|
|
|
echo ""
|
|
|
+ echo "- session.secret: Used as secret for session. If not provided a default one is used."
|
|
|
+ echo "- session.cookie-secure: Set the cookie secure option. See: https://github.com/expressjs/session#cookiesecure"
|
|
|
+ echo ""
|
|
|
+ echo "Session configuration values: $(snapctl get mqtt -d)"
|
|
|
+ echo ""
|
|
|
+ echo "- mqtt.name: The name used as client name when connecting to the mqtt server."
|
|
|
+ echo ""
|
|
|
echo "Set options with: $ snap set ${SNAP_NAME} param=key"
|
|
|
echo "For example: $ snap set ${SNAP_NAME} server.host=0.0.0.0"
|
|
|
echo ""
|
|
|
echo "Other settings can be set in the UI after start."
|
|
|
echo ""
|
|
|
echo "Follow the log with"
|
|
|
- echo "$ snap logs ${SNAP_NAME} -f"
|
|
|
+ echo "$ sudo snap logs ${SNAP_NAME} -f"
|
|
|
echo ""
|
|
|
echo "Other commands"
|
|
|
echo "Disable the daemon: $ ${SNAP_NAME}.disable"
|
|
@@ -97,6 +104,12 @@ elif [ "${USE_SECURE_COOKIE}" != true ]; then
|
|
|
unset USE_SECURE_COOKIE
|
|
|
fi
|
|
|
|
|
|
+export MQTT_NAME=$(snapctl get mqtt.name)
|
|
|
+
|
|
|
+if [ -z "${MQTT_NAME}" ]; then
|
|
|
+ unset MQTT_NAME
|
|
|
+fi
|
|
|
+
|
|
|
export HOST="${SERVER_HOST}"
|
|
|
export PORT="${SERVER_PORT}"
|
|
|
|