From 02ee39a27c72edbd866d51f7194aef8b63bee43a Mon Sep 17 00:00:00 2001 From: c0ffeeca7 <38767475+c0ffeeca7@users.noreply.github.com> Date: Tue, 14 May 2024 15:11:25 +0200 Subject: [PATCH] f-integrations: add glossary reference to config file (#32755) --- source/_integrations/fail2ban.markdown | 6 +++--- source/_integrations/fan.mqtt.markdown | 3 ++- source/_integrations/ffmpeg.markdown | 2 +- source/_integrations/file.markdown | 6 +++--- source/_integrations/fireservicerota.markdown | 2 +- source/_integrations/firmata.markdown | 2 +- source/_integrations/folder.markdown | 2 +- source/_integrations/foobot.markdown | 2 +- source/_integrations/foursquare.markdown | 2 +- source/_integrations/freedns.markdown | 2 +- source/_integrations/frontend.markdown | 8 ++++---- source/_integrations/futurenow.markdown | 2 +- 12 files changed, 20 insertions(+), 19 deletions(-) diff --git a/source/_integrations/fail2ban.markdown b/source/_integrations/fail2ban.markdown index e8481d13f81..76ab10e5677 100644 --- a/source/_integrations/fail2ban.markdown +++ b/source/_integrations/fail2ban.markdown @@ -65,7 +65,7 @@ For those of us using Docker, the above tutorial may not be sufficient. The foll #### Set HTTP logger -In your `configuration.yaml` file, add the following to the `logger` integration to ensure that Home Assistant prints failed login attempts to the log. +In your {% term "`configuration.yaml`" %} file, add the following to the `logger` integration to ensure that Home Assistant prints failed login attempts to the log. ```yaml logger: @@ -161,7 +161,7 @@ server { } ``` -Once that's added to the NGINX configuration, we need to modify the Home Assistant `configuration.yaml` such that the `X-Forwarded-For` header can be parsed. This is done by adding the following to the `http` integration: +Once that's added to the NGINX configuration, we need to modify the Home Assistant {% term "`configuration.yaml`" %} such that the `X-Forwarded-For` header can be parsed. This is done by adding the following to the `http` integration: ```yaml http: @@ -172,7 +172,7 @@ At this point, once the Let's Encrypt and Home Assistant dockers are restarted, #### Add the fail2ban sensor -Now that we've correctly set everything up for Docker, we can add our sensors to `configuration.yaml` with the following: +Now that we've correctly set everything up for Docker, we can add our sensors to {% term "`configuration.yaml`" %} with the following: ```yaml sensor: diff --git a/source/_integrations/fan.mqtt.markdown b/source/_integrations/fan.mqtt.markdown index e6a84090b2c..0433ed81bc9 100644 --- a/source/_integrations/fan.mqtt.markdown +++ b/source/_integrations/fan.mqtt.markdown @@ -18,7 +18,8 @@ When a `state_topic` is not available, the fan will work in optimistic mode. In Optimistic mode can be forced even if a `state_topic` is available. Try to enable it if you are experiencing incorrect fan operation. -To enable MQTT fans in your installation, add the following to your `configuration.yaml` file: +To enable MQTT fans in your installation, add the following to your {% term "`configuration.yaml`" %} file. +{% include integrations/restart_ha_after_config_inclusion.md %} ```yaml # Example configuration.yaml entry diff --git a/source/_integrations/ffmpeg.markdown b/source/_integrations/ffmpeg.markdown index fc1b56c5551..dacc5224b28 100644 --- a/source/_integrations/ffmpeg.markdown +++ b/source/_integrations/ffmpeg.markdown @@ -20,7 +20,7 @@ you have FFmpeg installed on your system. ## Configuration -To set it up, add the following information to your `configuration.yaml` file: +To set it up, add the following information to your {% term "`configuration.yaml`" %} file: ```yaml ffmpeg: diff --git a/source/_integrations/file.markdown b/source/_integrations/file.markdown index 458d208aae5..02953330523 100644 --- a/source/_integrations/file.markdown +++ b/source/_integrations/file.markdown @@ -62,7 +62,7 @@ To use notifications, please see the [getting started with automation page](/get The `file` sensor platform reads the entries from a plain-text file and shows the found value. Only the last line of the file is used. This is similar to do `$ tail -n 1 sensor.txt` on the command-line. Note that file paths must be added to [allowlist_external_dirs](/integrations/homeassistant/#allowlist_external_dirs). -To enable the `file` sensor, add the following lines to your `configuration.yaml`: +To enable the `file` sensor, add the following lines to your {% term "`configuration.yaml`" %}: ```yaml # Example configuration.yaml entry @@ -105,7 +105,7 @@ Assuming that the log file contains multiple values formatted as JSON like shown {"temperature": 22, "humidity": 36} ``` -This would require the following entry in the `configuration.yaml` file to extract the temperature: +This would require the following entry in the {% term "`configuration.yaml`" %} file to extract the temperature: {% raw %} @@ -131,7 +131,7 @@ timestamp,temperature,humidity 1631472949,22,36 ``` -This would require the following entry in the `configuration.yaml` file to extract the temperature: +This would require the following entry in the {% term "`configuration.yaml`" %} file to extract the temperature: {% raw %} diff --git a/source/_integrations/fireservicerota.markdown b/source/_integrations/fireservicerota.markdown index d4c62376b76..4dd7cb63dc0 100644 --- a/source/_integrations/fireservicerota.markdown +++ b/source/_integrations/fireservicerota.markdown @@ -215,7 +215,7 @@ This screenshot shows what a FireServiceRota dashboard can look like. ## Debugging -The FireServiceRota integration will log additional information about WebSocket incidents received, response and duty status gathered, and other messages when the log level is set to `debug`. Add the relevant lines below to the `configuration.yaml`: +The FireServiceRota integration will log additional information about WebSocket incidents received, response and duty status gathered, and other messages when the log level is set to `debug`. Add the relevant lines below to the {% term "`configuration.yaml`" %}: ```yaml logger: diff --git a/source/_integrations/firmata.markdown b/source/_integrations/firmata.markdown index a72cac55431..fcb3f7ecb6d 100644 --- a/source/_integrations/firmata.markdown +++ b/source/_integrations/firmata.markdown @@ -35,7 +35,7 @@ There is currently support for the following device types within Home Assistant: You will need to upload a [Firmata firmware](https://github.com/firmata/) to your board. Please upload any `StandardFirmata` sketch to your board; please refer to the [Arduino documentation](https://www.arduino.cc/en/Main/Howto) for further information for uploading sketches. Firmata is available in the Arduino Library Manager in the Arduino IDE. You may also use a [Firmata Express](https://github.com/MrYsLab/FirmataExpress). -To integrate Arduino boards with Home Assistant, add the following section to your `configuration.yaml` file: +To integrate Arduino boards with Home Assistant, add the following section to your {% term "`configuration.yaml`" %} file:
diff --git a/source/_integrations/futurenow.markdown b/source/_integrations/futurenow.markdown index 2ccf6263bec..e2b50ac041b 100644 --- a/source/_integrations/futurenow.markdown +++ b/source/_integrations/futurenow.markdown @@ -73,7 +73,7 @@ devices: ### Extended Configuration Sample -The following example `configuration.yaml` has two different FutureNow units with multiple channels: +The following example {% term "`configuration.yaml`" %} has two different FutureNow units with multiple channels: ```yaml # Example configuration.yaml entry