Skip to content

Commit 208d190

Browse files
committed
Rename addon to app
1 parent 7d9cd5d commit 208d190

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

openthread_border_router/DOCS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Installation
44

5-
Follow these steps to get the app (formerly knowon as add-on) installed on your system:
5+
Follow these steps to get the app (formerly known as add-on) installed on your system:
66

77
1. In Home Assistant, go to **Settings** > **Apps** > **Install app**.
88
2. Select the top right menu and **Repository**.

openthread_border_router/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
version: 2.16.0
33
slug: openthread_border_router
44
name: OpenThread Border Router
5-
description: OpenThread Border Router add-on
5+
description: OpenThread Border Router
66
url: >-
77
https://github.com/home-assistant/addons/tree/master/openthread_border_router
88
arch:

openthread_border_router/rootfs/etc/s6-overlay/s6-rc.d/nginx/run

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# ==============================================================================
77
bashio::log.info "Starting nginx..."
88

9-
# REST API listens on addon IP, so we need to know it for proxying
9+
# REST API listens on app IP, so we need to know it for proxying
1010
addon_ip="$(bashio::addon.ip_address)"
1111
sed "s/ADDON_IP/${addon_ip}/g" /etc/nginx/nginx.conf > /tmp/nginx.conf
1212

openthread_border_router/rootfs/etc/s6-overlay/scripts/banner.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
#!/usr/bin/with-contenv bashio
22
# shellcheck shell=bash
33
# ==============================================================================
4-
# Home Assistant Community Add-on: Base Images
5-
# Displays a simple add-on banner on startup
4+
# Home Assistant Community App: Base Images
5+
# Displays a simple app banner on startup
66
# ==============================================================================
77
if bashio::supervisor.ping; then
88
bashio::log.blue \
99
'-----------------------------------------------------------'
10-
bashio::log.blue " Add-on: $(bashio::addon.name)"
10+
bashio::log.blue " App: $(bashio::addon.name)"
1111
bashio::log.blue " $(bashio::addon.description)"
1212
bashio::log.blue \
1313
'-----------------------------------------------------------'
1414

15-
bashio::log.blue " Add-on version: $(bashio::addon.version)"
15+
bashio::log.blue " App version: $(bashio::addon.version)"
1616
if bashio::var.true "$(bashio::addon.update_available)"; then
17-
bashio::log.magenta ' There is an update available for this add-on!'
17+
bashio::log.magenta ' There is an update available for this app!'
1818
bashio::log.magenta \
19-
" Latest add-on version: $(bashio::addon.version_latest)"
19+
" Latest app version: $(bashio::addon.version_latest)"
2020
bashio::log.magenta ' Please consider upgrading as soon as possible.'
2121
else
22-
bashio::log.green ' You are running the latest version of this add-on.'
22+
bashio::log.green ' You are running the latest version of this app.'
2323
fi
2424

2525
bashio::log.blue " System: $(bashio::info.operating_system)" \

0 commit comments

Comments
 (0)