🔨 Re-branding

This commit is contained in:
Franck Nijhof 2020-02-09 19:31:36 +01:00
parent 313226fb0c
commit cd8d912926
No known key found for this signature in database
GPG key ID: D62583BA8AB11CA3
7 changed files with 22 additions and 22 deletions

View file

@ -1,8 +1,8 @@
---
repository:
description: "Docker base images (Debian) - Community Hass.io Add-on for Home Assistant"
description: "Docker base images (Debian) - Community Home Assistant Add-ons"
homepage: https://addons.community
topics: docker, hassio, hass, baseimage, baseimage-docker, home-automation, home-assistant, debian
topics: docker, baseimage, baseimage-docker, addons, homeassistant, home-assistant, debian
private: false
has_issues: true
has_projects: false

View file

@ -1,4 +1,4 @@
# Community Hass.io Add-ons: Debian Base Images
# Community Home Assistant Add-on: Debian Base Images
[![GitHub Release][releases-shield]][releases]
![Project Stage][project-stage-shield]
@ -21,12 +21,12 @@
[![Support Frenck on Patreon][patreon-shield]][patreon]
Docker Debian base images used by Community Hass.io Add-ons.
Docker Debian 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:
@ -35,7 +35,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.
@ -59,7 +59,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.
@ -85,11 +85,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

View file

@ -67,7 +67,7 @@ ARG BUILD_VERSION
# Labels
LABEL \
io.hass.name="Addon Debian base for ${BUILD_ARCH}" \
io.hass.description="Community Hass.io Add-ons: ${BUILD_ARCH} Debian base image" \
io.hass.description="Community Home Assistant Add-on: ${BUILD_ARCH} Debian base image" \
io.hass.arch="${BUILD_ARCH}" \
io.hass.type="base" \
io.hass.version=${BUILD_VERSION} \
@ -75,7 +75,7 @@ LABEL \
io.hass.base.name="debian" \
io.hass.base.image="hassioaddons/debian-base" \
maintainer="Franck Nijhof <frenck@addons.community>" \
org.label-schema.description="Community Hass.io Add-ons: ${BUILD_ARCH} Debian base image" \
org.label-schema.description="Community Home Assistant Add-on: ${BUILD_ARCH} Debian base image" \
org.label-schema.build-date=${BUILD_DATE} \
org.label-schema.name="Addon Debian base for ${BUILD_ARCH}" \
org.label-schema.schema-version="1.0" \
@ -83,4 +83,4 @@ LABEL \
org.label-schema.usage="https://github.com/hassio-addons/addon-debian-base/blob/master/README.md" \
org.label-schema.vcs-ref=${REF} \
org.label-schema.vcs-url="https://github.com/hassio-addons/addon-debian-base" \
org.label-schema.vendor="Franck Nijhof"
org.label-schema.vendor="Community Home Assistant Add-ons"

View file

@ -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

View file

@ -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 \
'-----------------------------------------------------------'

View file

@ -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

View file

@ -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}"
${command} "${service}"