Skip to content

Commit

Permalink
🔨 Re-branding
Browse files Browse the repository at this point in the history
  • Loading branch information
frenck committed Feb 9, 2020
1 parent 73331ac commit f7e91db
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
6 changes: 3 additions & 3 deletions .github/settings.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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."

Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -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]
Expand All @@ -21,20 +21,20 @@

[![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:

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

Expand All @@ -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.
Expand All @@ -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
Expand Down
4 changes: 2 additions & 2 deletions base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -82,12 +82,12 @@ LABEL \
io.hass.base.name="alpine" \
io.hass.base.image="hassioaddons/base" \
maintainer="Franck Nijhof <[email protected]>" \
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" \
org.label-schema.url="https://addons.community" \
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"
2 changes: 1 addition & 1 deletion base/rootfs/etc/cont-finish.d/99-message.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions base/rootfs/etc/cont-init.d/00-banner.sh
Original file line number Diff line number Diff line change
@@ -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 \
'-----------------------------------------------------------'
Expand All @@ -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 \
'-----------------------------------------------------------'
Expand Down
2 changes: 1 addition & 1 deletion base/rootfs/etc/cont-init.d/01-log-level.sh
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions base/rootfs/usr/bin/service
Original file line number Diff line number Diff line change
@@ -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 ;)
# ==============================================================================
Expand Down Expand Up @@ -30,4 +30,4 @@ if [[ ! -d "/var/run/s6/services/${service}" ]] ; then
exit
fi;

${command} "${service}"
${command} "${service}"

0 comments on commit f7e91db

Please sign in to comment.