mirror of
https://github.com/aljazceru/addons.git
synced 2025-12-17 21:24:20 +01:00
* Initial commit for HASS configurator * Requested changes * Update Dockerfile * update mechanics like other core add-ons * simplify * Update config.json * Update config.json * Update Dockerfile * Delete configurator.py * Create run.sh * Create map.py * Update and rename hass-configurator/config.json to configurator/config.json * Rename hass-configurator/Dockerfile to configurator/Dockerfile * Update and rename hass-configurator/map.py to configurator/map.py * Rename hass-configurator/run.sh to configurator/run.sh * Update map.py * add image for build * Update Dockerfile
9 lines
182 B
Bash
9 lines
182 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Map hassio value into hass-configurator options
|
|
python3 /map.py /tmp/configurator.json
|
|
|
|
# Run configurator
|
|
exec python3 /configurator.py /tmp/configurator.json
|