From 06b16550832152973673e90a200db589cd87f195 Mon Sep 17 00:00:00 2001 From: Carlo Costanzo Date: Fri, 26 Sep 2025 15:06:08 -0400 Subject: [PATCH] Update HA version to 2025.9.4 and remove obsolete IP change automation and external IP sensor configurations for a cleaner setup. --- config/.HA_VERSION | 2 +- config/automation/System/ip_change.yaml | 24 ------------------------ config/sensor/systemmonitor.yaml | 14 -------------- 3 files changed, 1 insertion(+), 39 deletions(-) delete mode 100755 config/automation/System/ip_change.yaml delete mode 100755 config/sensor/systemmonitor.yaml diff --git a/config/.HA_VERSION b/config/.HA_VERSION index 67add893..f95e230e 100755 --- a/config/.HA_VERSION +++ b/config/.HA_VERSION @@ -1 +1 @@ -2025.9.3 \ No newline at end of file +2025.9.4 \ No newline at end of file diff --git a/config/automation/System/ip_change.yaml b/config/automation/System/ip_change.yaml deleted file mode 100755 index cc686019..00000000 --- a/config/automation/System/ip_change.yaml +++ /dev/null @@ -1,24 +0,0 @@ -############################################################################## -### Detect when things are on and forgotten about. Like any Good Watchdog. -############################################################################## - -############################################################################## - -- alias: "NOTIFY IF IP CHANGES" - id: 88a58d11-28bd-48e1-a674-bc53ee3d8016 - - trigger: - - platform: state - entity_id: sensor.ipchange - from: 'False' - to: 'True' - action: - - service: script.notify_engine - data: - value1: 'Changed IP address:' - value2: "New IP: {{ states('sensor.exteral_ip') }}" - value3: ' - Be sure to Change DNS!' - who: 'carlo' - group: 'ip-change' - -############################################################################## diff --git a/config/sensor/systemmonitor.yaml b/config/sensor/systemmonitor.yaml deleted file mode 100755 index dfdc566a..00000000 --- a/config/sensor/systemmonitor.yaml +++ /dev/null @@ -1,14 +0,0 @@ -- platform: rest - scan_interval: 86400 - resource: https://api.ipify.org/ - name: External IP - value_template: '{{ value }}' - -############################################################################################################# -### This part of the automation is hidden due to the External IP address being exposed ## -# - platform: template - # sensors: - # ipchange: - # entity_id: sensor.external_ip - # value_template: "{%- if is_state('sensor.external_ip', 'xxx.xxx.xxx.xxx') -%} False {%- elif is_state('sensor.external_ip', 'unknown' ) -%} False {%- else -%} True {%- endif %}" -#############################################################################################################