mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-11 19:36:50 +00:00
Fix deluge configuration (#6748)
* Fix deluge configuration * Fix eg., * Fix required username and password * Add default
This commit is contained in:
parent
7017eb4cd5
commit
ff0f41fe50
@ -31,14 +31,38 @@ sensor:
|
|||||||
- 'upload_speed'
|
- 'upload_speed'
|
||||||
```
|
```
|
||||||
|
|
||||||
Configuration variables:
|
{% configuration %}
|
||||||
|
host:
|
||||||
- **host** (*Required*): This is the IP address of your Deluge daemon, eg. 192.168.1.32.
|
required: true
|
||||||
- **port** (*Optional*): The port your Deluge daemon uses. Defaults to 58846. Warning, this is not the port of the WebUI.
|
type: string
|
||||||
- **name** (*Optional*): The name to use when displaying this Deluge instance.
|
description: This is the IP address of your Deluge daemon, e.g., 192.168.1.32.
|
||||||
- **username** (*Required*): Your Deluge daemon username.
|
port:
|
||||||
- **password** (*Required*): Your Deluge daemon password.
|
required: false
|
||||||
- **monitored_variables** array (*Required*): Conditions to display in the frontend.
|
type: integer
|
||||||
- **current_status**: The status of your Deluge daemon.
|
description: The port your Deluge daemon uses. Warning, this is not the port of the WebUI.
|
||||||
- **download_speed**: The current download speed.
|
default: 58846
|
||||||
- **upload_speed**: The current upload speed.
|
name:
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
default: Deluge
|
||||||
|
description: The name to use when displaying this Deluge instance.
|
||||||
|
username:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
description: Your Deluge daemon username.
|
||||||
|
password:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
description: Your Deluge daemon password.
|
||||||
|
monitored_variables:
|
||||||
|
required: true
|
||||||
|
type: list
|
||||||
|
description: Conditions to display in the frontend.
|
||||||
|
keys:
|
||||||
|
current_status:
|
||||||
|
description: The status of your Deluge daemon.
|
||||||
|
download_speed:
|
||||||
|
description: The current download speed.
|
||||||
|
upload_speed:
|
||||||
|
description: The current upload speed.
|
||||||
|
{% endconfiguration %}
|
||||||
|
@ -27,10 +27,27 @@ switch:
|
|||||||
password : PASSWORD
|
password : PASSWORD
|
||||||
```
|
```
|
||||||
|
|
||||||
Configuration variables:
|
{% configuration %}
|
||||||
|
host:
|
||||||
- **host** (*Required*): This is the IP address of your Deluge daemon, eg. 192.168.1.32.
|
required: true
|
||||||
- **username** (*Required*): Your Deluge username, if you use authentication.
|
type: string
|
||||||
- **password** (*Required*): Your Deluge password, if you use authentication.
|
description: This is the IP address of your Deluge daemon, eg., 192.168.1.32.
|
||||||
- **port** (*Optional*): The port your Deluge daemon uses, defaults to 58846. Warning,this is not the port of the WebUI
|
username:
|
||||||
- **name** (*Optional*): The name to use when displaying this Deluge instance.
|
required: true
|
||||||
|
type: string
|
||||||
|
description: Your Deluge username, if you use authentication.
|
||||||
|
password:
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
description: Your Deluge password, if you use authentication.
|
||||||
|
port:
|
||||||
|
required: false
|
||||||
|
type: integer
|
||||||
|
default: 58846
|
||||||
|
description: "The port your Deluge daemon uses. (Warning: This is not the port of the WebUI.)"
|
||||||
|
name:
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
default: Deluge Switch
|
||||||
|
description: The name to use when displaying this Deluge instance.
|
||||||
|
{% endconfiguration %}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user