From f7e91db2b65fd4e39c340ce8db96a668b5904a92 Mon Sep 17 00:00:00 2001 From: Franck Nijhof Date: Sun, 9 Feb 2020 13:04:50 +0100 Subject: [PATCH] :hammer: Re-branding --- .github/settings.yml | 6 +++--- README.md | 18 +++++++++--------- base/Dockerfile | 4 ++-- base/rootfs/etc/cont-finish.d/99-message.sh | 2 +- base/rootfs/etc/cont-init.d/00-banner.sh | 8 ++++---- base/rootfs/etc/cont-init.d/01-log-level.sh | 2 +- base/rootfs/usr/bin/service | 4 ++-- 7 files changed, 22 insertions(+), 22 deletions(-) diff --git a/.github/settings.yml b/.github/settings.yml index f0bea39..6989ef4 100644 --- a/.github/settings.yml +++ b/.github/settings.yml @@ -1,8 +1,8 @@ --- repository: - description: "Docker base images (Alpine) - Community Hass.io Add-on for Home Assistant" + description: "Docker base images (Alpine) - Community Home Assistant Add-ons" homepage: https://addons.community - topics: docker, hassio, hass, baseimage, baseimage-docker, home-automation, home-assistant, alpine + topics: docker, baseimage, baseimage-docker, addons, homeassistant, home-assistant, alpine private: false has_issues: true has_projects: false @@ -46,7 +46,7 @@ labels: - name: "Type: Discussion" color: d4c5f9 description: "Marks an issue as a generic discussion ticket." - - name: "Type: Maintaince" + - name: "Type: Maintenance" color: 2af79e description: "Generic maintaince tasks, e.g., package updates." diff --git a/README.md b/README.md index ce72e33..1c3acd6 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# Community Hass.io Add-ons: Base Images +# Community Home Assistant Add-on: Base Images [![GitHub Release][releases-shield]][releases] ![Project Stage][project-stage-shield] @@ -21,12 +21,12 @@ [![Support Frenck on Patreon][patreon-shield]][patreon] -Docker base images used by Community Hass.io Add-ons. +Docker base images used by Community Home Assistant Add-ons. ## About -These are the base images used by add-ons created by the Community Hass.io -Add-ons. +These are the base images used by add-ons created by the +Community Home Assistant Add-ons. While Home Assistant provides base images, the images provided by this repository contain some extras: @@ -34,7 +34,7 @@ repository contain some extras: - Adds [s6] as a process supervisor. - Adds `jq` & `curl`, since every add-on uses them. - Adds Docker [Label Schema][label-schema] support. -- Includes a Hass.io helper library: [Bashio][bashio] +- Includes a helper library: [Bashio][bashio] - Handles logs, add-on startup banners and update notifications. - Several small adjustments and improvements. @@ -58,7 +58,7 @@ Got questions? You have several options to get them answered: -- The [Community Hass.io Add-ons Discord chat server][discord] for add-on +- The [Community Home Assistant Add-ons Discord chat server][discord] for add-on support and feature requests. - The [Home Assistant Discord Chat Server][discord-ha] for general Home Assistant discussions and questions. @@ -84,11 +84,11 @@ The original setup of this repository is by [Franck Nijhof][frenck]. For a full list of all authors and contributors, check [the contributor's page][contributors]. -## We have got some Hass.io add-ons for you +## We have got some Home Assistant add-ons for you -Want some more functionality to your Hass.io Home Assistant instance? +Want some more functionality to your Home Assistant instance? -We have created multiple add-ons for Hass.io. For a full list, check out +We have created multiple add-ons for Home Assistant. For a full list, check out our [GitHub Repository][repository]. ## License diff --git a/base/Dockerfile b/base/Dockerfile index af94ebf..fecf4b9 100644 --- a/base/Dockerfile +++ b/base/Dockerfile @@ -82,7 +82,7 @@ LABEL \ io.hass.base.name="alpine" \ io.hass.base.image="hassioaddons/base" \ maintainer="Franck Nijhof " \ - org.label-schema.description="Community Hass.io Add-ons: ${BUILD_ARCH} Base image" \ + org.label-schema.description="Community Home Assistant Add-on: ${BUILD_ARCH} Base image" \ org.label-schema.build-date=${BUILD_DATE} \ org.label-schema.name="Addon base for ${BUILD_ARCH}" \ org.label-schema.schema-version="1.0" \ @@ -90,4 +90,4 @@ LABEL \ org.label-schema.usage="https://github.com/hassio-addons/addon-base/blob/master/README.md" \ org.label-schema.vcs-ref=${REF} \ org.label-schema.vcs-url="https://github.com/hassio-addons/addon-base" \ - org.label-schema.vendor="Franck Nijhof" + org.label-schema.vendor="Community Home Assistant Add-ons" diff --git a/base/rootfs/etc/cont-finish.d/99-message.sh b/base/rootfs/etc/cont-finish.d/99-message.sh index 7a3d2da..461e2cc 100644 --- a/base/rootfs/etc/cont-finish.d/99-message.sh +++ b/base/rootfs/etc/cont-finish.d/99-message.sh @@ -1,6 +1,6 @@ #!/usr/bin/env bashio # ============================================================================== -# Community Hass.io Add-ons: Base Images +# Community Home Assistant Add-on: Base Images # Displays an message right before terminating in case something went wrong # ============================================================================== if [[ "${S6_STAGE2_EXITED}" -ne 0 ]]; then diff --git a/base/rootfs/etc/cont-init.d/00-banner.sh b/base/rootfs/etc/cont-init.d/00-banner.sh index ec87dc0..6488af0 100644 --- a/base/rootfs/etc/cont-init.d/00-banner.sh +++ b/base/rootfs/etc/cont-init.d/00-banner.sh @@ -1,12 +1,12 @@ #!/usr/bin/with-contenv bashio # ============================================================================== -# Community Hass.io Add-ons: Base Images +# Community Home Assistant Add-on: Base Images # Displays a simple add-on banner on startup # ============================================================================== if bashio::supervisor.ping; then bashio::log.blue \ '-----------------------------------------------------------' - bashio::log.blue " Hass.io Add-on: $(bashio::addon.name)" + bashio::log.blue " Add-on: $(bashio::addon.name)" bashio::log.blue " $(bashio::addon.description)" bashio::log.blue \ '-----------------------------------------------------------' @@ -23,8 +23,8 @@ if bashio::supervisor.ping; then bashio::log.blue " System: $(bashio::host.operating_system)" \ " ($(bashio::info.arch) / $(bashio::info.machine))" - bashio::log.blue " Home Assistant version: $(bashio::info.homeassistant)" - bashio::log.blue " Supervisor version: $(bashio::info.supervisor)" + bashio::log.blue " Home Assistant Core: $(bashio::info.homeassistant)" + bashio::log.blue " Home Assistant Supervisor: $(bashio::info.supervisor)" bashio::log.blue \ '-----------------------------------------------------------' diff --git a/base/rootfs/etc/cont-init.d/01-log-level.sh b/base/rootfs/etc/cont-init.d/01-log-level.sh index 2a1bcf2..5a86dc9 100644 --- a/base/rootfs/etc/cont-init.d/01-log-level.sh +++ b/base/rootfs/etc/cont-init.d/01-log-level.sh @@ -1,6 +1,6 @@ #!/usr/bin/with-contenv bashio # ============================================================================== -# Community Hass.io Add-ons: Base Images +# Community Home Assistant Add-on: Base Images # Sets the log level correctly # ============================================================================== declare log_level diff --git a/base/rootfs/usr/bin/service b/base/rootfs/usr/bin/service index 809896e..979c32b 100755 --- a/base/rootfs/usr/bin/service +++ b/base/rootfs/usr/bin/service @@ -1,6 +1,6 @@ #!/bin/bash # ============================================================================== -# Community Hass.io Add-ons: Base Images +# Community Home Assistant Add-on: Base Images # This script patches all service commands into the appropriate s6- commands # Why not systemd? Docker said no, so did we ;) # ============================================================================== @@ -30,4 +30,4 @@ if [[ ! -d "/var/run/s6/services/${service}" ]] ; then exit fi; -${command} "${service}" \ No newline at end of file +${command} "${service}"