Skip to content

Commit

Permalink
v6.12
Browse files Browse the repository at this point in the history
+General | Resolved an issue on ARM64 + Jessie with APT, due to debian-security removing suppport and packages for those devices. If you experience this issue, and are unable to update DietPi, please see : https://github.com/Fourdee/DietPi/issues/1915
  • Loading branch information
Daniel (Fourdee) committed Jul 16, 2018
1 parent 99b8a6d commit 1475556
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
2 changes: 1 addition & 1 deletion CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ DietPi-Software | JRiver: Removed and no longer available for installation: http
DietPi-Software | Various titles: Now run under their own system user account, with limited permissions (previously root): https://github.com/Fourdee/DietPi/issues/1877#issuecomment-403298679
DietPi-RAMlog | Increased the max size of /var/log to 50MB by default (previously 20MB). This should prevent 0 free space errors for excessive log file usage. Pi-Hole max logfile size is now 50MB/3 (16MB~) for high usage with daily stats support: https://github.com/pi-hole/pi-hole/issues/2270#issuecomment-405109135 | https://github.com/Fourdee/DietPi/issues/1923


Bug Fixes:
General | Resolved an issue where cron jobs, containing DietPi scripts, failed: https://github.com/Fourdee/DietPi/issues/1923
General | Resolved an issue on ARM64 + Jessie with APT, due to debian-security removing suppport and packages for those devices. If you experience this issue, and are unable to update DietPi, please see : https://github.com/Fourdee/DietPi/issues/1915
DietPi-Config | ASUS TB: Resolved loss of WiFi device after a reboot: https://github.com/Fourdee/DietPi/issues/1760
DietPi-Drive_Manager | Resolved an issue where the program could remove a non-empty directory in rare situations.
DietPi-Software | Resolved a potential Mono instability issue with Radarr, Sonarr and Jackett, due to using '--optimize=all --server'. This has now been removed for new installations. Many thanks to @hellfirehd for debugging/testing and @Taloth for dev insights: https://github.com/Fourdee/DietPi/issues/1896
Expand Down
7 changes: 7 additions & 0 deletions dietpi/func/dietpi-set_software
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,13 @@ _EOF_

sed -i 's/https:/http:/g' /etc/apt/sources.list

# - ARM64 packages no longer available: https://github.com/Fourdee/DietPi/issues/1915
if (( $G_HW_ARCH == 3 )); then

sed -i '/debian-security/d' /etc/apt/sources.list

fi

# Buster, remove backports: https://github.com/Fourdee/DietPi/issues/1285#issuecomment-351830101
elif (( $G_DISTRO > 4 )); then

Expand Down
7 changes: 7 additions & 0 deletions dietpi/patch_file
Original file line number Diff line number Diff line change
Expand Up @@ -935,6 +935,13 @@ _EOF_

fi
#-------------------------------------------------------------------------------
# - ARM64 packages no longer available: https://github.com/Fourdee/DietPi/issues/1915
if (( $G_DISTRO < 4 && $G_HW_ARCH == 3 )); then

sed -i '/debian-security/d' /etc/apt/sources.list

fi
#-------------------------------------------------------------------------------


fi
Expand Down

0 comments on commit 1475556

Please sign in to comment.