Preparing release 1.9.2

pull/6/head
Dominik Dzienia 4 months ago
parent eddbefe919
commit c7acde0478

@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.9.2] - 2025-03-13
### Changed
- Adjusted to new mikr.us host naming strategy
### Fixed
- Limited of watchdog logs added for diagnostics
## [1.9.1] - 2024-10-26
### Added

@ -939,13 +939,13 @@ setup_firewall() {
ufw allow ssh
} >>"$LOGTO" 2>&1
host=$(hostname)
host=$(hostname)
# Extract the last 3 digits from the hostname
port_number=$(echo "$host" | grep -oE '[0-9]{3}$')
port1=$((10000 + port_number))
port2=$((20000 + port_number))
port1=$((10000 + port_number))
port2=$((20000 + port_number))
port3=$((30000 + port_number))
if ufw allow "$port1" >>"$LOGTO" 2>&1; then

@ -923,13 +923,13 @@ setup_firewall() {
ufw allow ssh
} >>"$LOGTO" 2>&1
host=$(hostname)
host=$(hostname)
# Extract the last 3 digits from the hostname
port_number=$(echo "$host" | grep -oE '[0-9]{3}$')
port1=$((10000 + port_number))
port2=$((20000 + port_number))
port1=$((10000 + port_number))
port2=$((20000 + port_number))
port3=$((30000 + port_number))
if ufw allow "$port1" >>"$LOGTO" 2>&1; then

@ -1 +1 @@
2025-03-13T11:19:37.598Z
2025-03-13T13:20:10.412Z
Loading…
Cancel
Save