✏️ Move automation and backend redirect to file (#14759)

This commit is contained in:
Klaas Schoute 2020-10-02 12:01:12 +02:00 committed by GitHub
parent f2c3d757b6
commit 610597eb83
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
9 changed files with 8 additions and 8 deletions

View File

@ -1,7 +1,6 @@
---
title: "Automation Actions"
description: "Automations result in action."
redirect_from: /getting-started/automation-action/
---
The action of an automation rule is what is being executed when a rule fires. The action part follows the [script syntax](/docs/scripts/) which can be used to interact with anything via services or events. For services you can specify the entity_id that it should apply to and optional service parameters (to specify for example the brightness).

View File

@ -1,7 +1,6 @@
---
title: "Automation Conditions"
description: "Automations can test conditions when invoked."
redirect_from: /getting-started/automation-condition/
---
Conditions are an optional part of an automation rule and can be used to prevent an action from happening when triggered. When a condition does not return true, the automation will stop executing. Conditions look very similar to triggers but are very different. A trigger will look at events happening in the system while a condition only looks at how the system looks right now. A trigger can observe that a switch is being turned on. A condition can only see if a switch is currently on or off.

View File

@ -1,7 +1,6 @@
---
title: "Automation Examples"
description: "Some automation examples to get you started."
redirect_from: /getting-started/automation-examples/
---
Just some sample automation rules to get you started.

View File

@ -1,7 +1,6 @@
---
title: "Automation Templating"
description: "Advanced automation documentation using templating."
redirect_from: /getting-started/automation-templating/
---
In Home Assistant 0.19 we introduced a new powerful feature: variables in scripts and automations. This makes it possible to adjust your condition and action based on the information of the trigger.

View File

@ -1,7 +1,6 @@
---
title: "Automation Trigger"
description: "All the different ways how automations can be triggered."
redirect_from: /getting-started/automation-trigger/
---
### What are triggers

View File

@ -1,7 +1,6 @@
---
title: "Troubleshooting Automations"
description: "Tips on how to troubleshoot your automations."
redirect_from: /getting-started/automation-troubleshooting/
---
You can verify that your automation rules are being initialized correctly by watching both the realtime logs (`homeassistant.log` in the configuration directory) and also the [Logbook](/integrations/logbook/). The realtime logs will show the rules being initialized (once for each trigger), example:

View File

@ -1,7 +1,6 @@
---
title: "Database"
description: "Details about the database used by Home Assistant."
redirect_from: /details/database/
---
Database is used in by Home Assistant as history and tracker only, to store the events and its parameters. The default database used by Home Assistant is [SQLite](https://www.sqlite.org/), and the database file is stored in your [configuration directory](/getting-started/configuration/) (e.g., `<path to config dir>/home-assistant_v2.db`). If you prefer to run a database server (e.g., PostgreSQL), use the [`recorder` component](/integrations/recorder/).

View File

@ -1,7 +1,6 @@
---
title: "Updater"
description: "Details what the updater integration is reporting about your Home Assistant instance."
redirect_from: /details/updater/
---
Starting with 0.31 the [updater component](/integrations/updater/) sends an optional report about Home Assistant instance.

View File

@ -2028,6 +2028,8 @@
/integrations/telegram_chatbot /integrations/telegram_bot
# Moved documentation
/details/database /docs/backend/database
/details/updater /docs/backend/updater
/docs/ecosystem/ios/ https://companion.home-assistant.io/
/docs/ecosystem/ios/devices_file https://companion.home-assistant.io/
/docs/ecosystem/ios/integration https://companion.home-assistant.io/docs/integrations/integrations
@ -2066,6 +2068,12 @@
/integrations/switch.knx /integrations/knx#switch
/integrations/weather.knx /integrations/knx#weather
/integrations/zigbee /integrations/xbee
/getting-started/automation-action /docs/automation/action
/getting-started/automation-condition /docs/automation/condition
/getting-started/automation-examples /docs/automation/examples
/getting-started/automation-troubleshooting /docs/automation/troubleshooting
/getting-started/automation-trigger /docs/automation/trigger
/getting-started/automation-templating /docs/automation/templating
/getting-started/basic /docs/configuration/basic
/getting-started/customizing-devices /docs/configuration/customizing-devices
/getting-started/devices /docs/configuration/devices