Remove HIBP checks (#121)

This commit is contained in:
Franck Nijhof 2021-04-21 17:03:32 +02:00 committed by GitHub
parent dcddccd08e
commit 86db0c484c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 19 deletions

View file

@ -67,14 +67,10 @@ to prevent users from using your installation for themselves.
This option is HIGHLY recommended in case you expose this add-on to the outside
world.
**Note**: _This option support secrets, e.g., `!secret tautulli_username`._
### Option: `password`
Password for authenticating with Tautulli interface.
**Note**: _This option support secrets, e.g., `!secret tautulli_password`._
### Option: `ssl`
Enables/Disables SSL (HTTPS) on the web interface of Tautulli. Set it `true`
@ -92,14 +88,6 @@ The private key file to use for SSL.
**Note**: _The file MUST be stored in `/ssl/`, which is the default_
### Option: `i_like_to_be_pwned`
Adding this option to the add-on configuration allows to you bypass the
HaveIBeenPwned password requirement by setting it to `true`.
**Note**: _We STRONGLY suggest picking a stronger/safer password instead of
using this option! USE AT YOUR OWN RISK!_
### Option: `leave_front_door_open`
Adding this option to the add-on configuration allows you to disable

View file

@ -29,7 +29,6 @@
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"i_like_to_be_pwned": "bool?",
"leave_front_door_open": "bool?"
}
}

View file

@ -14,12 +14,6 @@ if ! bashio::config.true 'leave_front_door_open'; then
bashio::config.require.password;
fi
# Require a secure password
if bashio::config.has_value 'password' \
&& ! bashio::config.true 'i_like_to_be_pwned'; then
bashio::config.require.safe_password
fi
# Check SSL cerrificate
bashio::config.require.ssl