2019-03-17 20:41:07 +01:00
|
|
|
#!/usr/bin/with-contenv bashio
|
2019-02-13 16:54:02 +01:00
|
|
|
# ==============================================================================
|
|
|
|
# Community Hass.io Add-ons: ESPHome
|
|
|
|
# This files migrates the esphome config directory from the old path
|
|
|
|
# ==============================================================================
|
|
|
|
|
|
|
|
if [[ ! -d /config/esphome && -d /config/esphomeyaml ]]; then
|
|
|
|
echo "Moving config directory from /config/esphomeyaml to /config/esphome"
|
|
|
|
mv /config/esphomeyaml /config/esphome
|
|
|
|
mv /config/esphome/.esphomeyaml /config/esphome/.esphome
|
|
|
|
fi
|