Skip to content

Commit

Permalink
v9.1
Browse files Browse the repository at this point in the history
- DietPi-Software | Domoticz: Enabled for Bookworm systems, since the latest builds are now compiled against libssl3
  • Loading branch information
MichaIng committed Jan 22, 2024
1 parent 3483574 commit a56d903
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ v9.1
New images:

Enhancements:
- DietPi-Software | Domoticz: Enabled for Bookworm systems, since the latest builds are now compiled against libssl3.

Bug fixes:

Expand Down
5 changes: 2 additions & 3 deletions dietpi/dietpi-software
Original file line number Diff line number Diff line change
Expand Up @@ -1507,8 +1507,6 @@ Available commands:
aSOFTWARE_DESC[$software_id]='Open source home automation platform'
aSOFTWARE_CATX[$software_id]=17
aSOFTWARE_DOCS[$software_id]='https://dietpi.com/docs/software/home_automation/#domoticz'
# - Bookworm: No libssl3 support: https://github.com/domoticz/domoticz/issues/5233, https://github.com/MichaIng/DietPi/issues/6404
aSOFTWARE_AVAIL_G_DISTRO[$software_id,7]=0
#------------------
software_id=27
aSOFTWARE_NAME[$software_id]='TasmoAdmin'
Expand Down Expand Up @@ -11422,7 +11420,8 @@ _EOF_
# APT deps
aDEPS=('libusb-0.1-4' 'libcurl3-gnutls') # https://github.com/MichaIng/DietPi/issues/6404

Download_Install "https://releases.domoticz.com/releases/release/domoticz_linux_${G_HW_ARCH_NAME/armv6l/armv7l}.tgz" ./domoticz
local fallback_url="https://github.com/domoticz/domoticz/releases/download/2024.1/domoticz_linux_2024.1_${G_HW_ARCH_NAME/armv6l/armv7l}.tgz"
Download_Install "$(curl -sSfL 'https://api.github.com/repos/domoticz/domoticz/releases/latest' | mawk -F\" "/^ *\"browser_download_url\": \".*\/domoticz_linux_[^\"\/]*_${G_HW_ARCH_NAME/armv6l/armv7l}.tgz\"$/{print \$4}")" ./domoticz
# Reinstall: Clean old install dir
[[ -d '/opt/domoticz' ]] && G_EXEC rm -R /opt/domoticz
G_EXEC mv domoticz /opt/
Expand Down

0 comments on commit a56d903

Please sign in to comment.