mirror of
				https://github.com/esphome/esphome.git
				synced 2025-10-31 07:03:55 +00:00 
			
		
		
		
	Fix fatal erroring in addon startup script (#3244)
This commit is contained in:
		| @@ -7,12 +7,12 @@ | |||||||
| # Check SSL requirements, if enabled | # Check SSL requirements, if enabled | ||||||
| if bashio::config.true 'ssl'; then | if bashio::config.true 'ssl'; then | ||||||
|     if ! bashio::config.has_value 'certfile'; then |     if ! bashio::config.has_value 'certfile'; then | ||||||
|         bashio::fatal 'SSL is enabled, but no certfile was specified.' |         bashio::log.fatal 'SSL is enabled, but no certfile was specified.' | ||||||
|         bashio::exit.nok |         bashio::exit.nok | ||||||
|     fi |     fi | ||||||
|  |  | ||||||
|     if ! bashio::config.has_value 'keyfile'; then |     if ! bashio::config.has_value 'keyfile'; then | ||||||
|         bashio::fatal 'SSL is enabled, but no keyfile was specified' |         bashio::log.fatal 'SSL is enabled, but no keyfile was specified' | ||||||
|         bashio::exit.nok |         bashio::exit.nok | ||||||
|     fi |     fi | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user