mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-30 06:33:51 +00:00 
			
		
		
		
	Migrate old-style S6 scripts to s6-rc.d (#4311)
This commit is contained in:
		| @@ -1,41 +0,0 @@ | ||||
| #!/usr/bin/with-contenv bashio | ||||
| # ============================================================================== | ||||
| # Community Hass.io Add-ons: ESPHome | ||||
| # This files check if all user configuration requirements are met | ||||
| # ============================================================================== | ||||
|  | ||||
| # Check SSL requirements, if enabled | ||||
| if bashio::config.true 'ssl'; then | ||||
|     if ! bashio::config.has_value 'certfile'; then | ||||
|         bashio::log.fatal 'SSL is enabled, but no certfile was specified.' | ||||
|         bashio::exit.nok | ||||
|     fi | ||||
|  | ||||
|     if ! bashio::config.has_value 'keyfile'; then | ||||
|         bashio::log.fatal 'SSL is enabled, but no keyfile was specified' | ||||
|         bashio::exit.nok | ||||
|     fi | ||||
|  | ||||
|  | ||||
|     certfile="/ssl/$(bashio::config 'certfile')" | ||||
|     keyfile="/ssl/$(bashio::config 'keyfile')" | ||||
|  | ||||
|     if ! bashio::fs.file_exists "${certfile}"; then | ||||
|         if ! bashio::fs.file_exists "${keyfile}"; then | ||||
|             # Both files are missing, let's print a friendlier error message | ||||
|             bashio::log.fatal 'You enabled encrypted connections using the "ssl": true option.' | ||||
|             bashio::log.fatal "However, the SSL files '${certfile}' and '${keyfile}'" | ||||
|             bashio::log.fatal "were not found. If you're using Hass.io on your local network and don't want" | ||||
|             bashio::log.fatal 'to encrypt connections to the ESPHome dashboard, you can manually disable' | ||||
|             bashio::log.fatal 'SSL by setting "ssl" to false."' | ||||
|             bashio::exit.nok | ||||
|         fi | ||||
|         bashio::log.fatal "The configured certfile '${certfile}' was not found." | ||||
|         bashio::exit.nok | ||||
|     fi | ||||
|  | ||||
|     if ! bashio::fs.file_exists "/ssl/$(bashio::config 'keyfile')"; then | ||||
|         bashio::log.fatal "The configured keyfile '${keyfile}' was not found." | ||||
|         bashio::exit.nok | ||||
|     fi | ||||
| fi | ||||
| @@ -1,34 +0,0 @@ | ||||
| #!/usr/bin/with-contenv bashio | ||||
| # ============================================================================== | ||||
| # Community Hass.io Add-ons: ESPHome | ||||
| # Configures NGINX for use with ESPHome | ||||
| # ============================================================================== | ||||
|  | ||||
| declare certfile | ||||
| declare keyfile | ||||
| declare direct_port | ||||
| declare ingress_interface | ||||
| declare ingress_port | ||||
|  | ||||
| mkdir -p /var/log/nginx | ||||
|  | ||||
| direct_port=$(bashio::addon.port 6052) | ||||
| if bashio::var.has_value "${direct_port}"; then | ||||
|     if bashio::config.true 'ssl'; then | ||||
|         certfile=$(bashio::config 'certfile') | ||||
|         keyfile=$(bashio::config 'keyfile') | ||||
|  | ||||
|         mv /etc/nginx/servers/direct-ssl.disabled /etc/nginx/servers/direct.conf | ||||
|         sed -i "s/%%certfile%%/${certfile}/g" /etc/nginx/servers/direct.conf | ||||
|         sed -i "s/%%keyfile%%/${keyfile}/g" /etc/nginx/servers/direct.conf | ||||
|     else | ||||
|         mv /etc/nginx/servers/direct.disabled /etc/nginx/servers/direct.conf | ||||
|     fi | ||||
|  | ||||
|     sed -i "s/%%port%%/${direct_port}/g" /etc/nginx/servers/direct.conf | ||||
| fi | ||||
|  | ||||
| ingress_port=$(bashio::addon.ingress_port) | ||||
| ingress_interface=$(bashio::addon.ip_address) | ||||
| sed -i "s/%%port%%/${ingress_port}/g" /etc/nginx/servers/ingress.conf | ||||
| sed -i "s/%%interface%%/${ingress_interface}/g" /etc/nginx/servers/ingress.conf | ||||
| @@ -1,9 +0,0 @@ | ||||
| #!/usr/bin/with-contenv bashio | ||||
| # ============================================================================== | ||||
| # Community Hass.io Add-ons: ESPHome | ||||
| # This files creates all directories used by esphome | ||||
| # ============================================================================== | ||||
|  | ||||
| pio_cache_base=/data/cache/platformio | ||||
|  | ||||
| mkdir -p "${pio_cache_base}" | ||||
		Reference in New Issue
	
	Block a user