mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2025-12-03 22:33:03 -05:00
fix --require-auth flag
Apparently with docopt, --require-auth=false doesn't work, so booleans with a default value of true can't be turned off. Toggle the default to false to deal with this, for now. I'd prefer the default be true, but I also would prefer to not use a negative --no-require-auth or --allow-unauthenticated flag. I think I'll switch from docopt to clap in the near future; it seems to be what the cool kids use.
This commit is contained in:
@@ -106,8 +106,7 @@ After=network-online.target
|
||||
ExecStart=${SERVICE_BIN} run \\
|
||||
--db-dir=${DB_DIR} \\
|
||||
--ui-dir=${LIB_DIR}/ui \\
|
||||
--http-addr=0.0.0.0:${NVR_PORT} \
|
||||
--require=auth=false
|
||||
--http-addr=0.0.0.0:${NVR_PORT}
|
||||
Environment=TZ=:/etc/localtime
|
||||
Environment=MOONFIRE_FORMAT=google-systemd
|
||||
Environment=MOONFIRE_LOG=info
|
||||
|
||||
Reference in New Issue
Block a user