Browse Source

Remove config test as it results in a form of deadlocks on failed updates

Joachim M. Giæver 3 years ago
parent
commit
415f8cd7a0
1 changed files with 20 additions and 3 deletions
  1. 20 3
      scripts/hooks/post-refresh

+ 20 - 3
scripts/hooks/post-refresh

@@ -3,6 +3,23 @@
 source "${SNAP}/init"
 logger "Running post-refresh ${SNAP_NAME} (uuid: ${UUID})"
 
-logger "Running config test"
-set -e
-$SNAP/bin/hass --script check_config --config "${SNAP_DATA}"
+# Temporarely removed
+# logger "Running config test"
+# set -e
+# CC="${SNAP_DATA}/custom_components"
+# CCT="${SNAP_DATA}/.custom_components"
+#
+# if [ -d "${CC}" ]; then
+#     logger "Disabling custom components"
+#     mv "${CC}" "${CCT}"
+# fi
+#
+# $SNAP/bin/hass --script check_config --config "${SNAP_DATA}"
+# RES=$?
+#
+# if [ -d "${CC}" ]; then
+#     logger "Enabling custom components"
+#     mv "${CCT}" "${CC}"
+# fi
+#
+# exit $RES