Skip to content

Commit

Permalink
v8.24
Browse files Browse the repository at this point in the history
- DietPi-Software | NZBGet: Resolved an issue where the log file /var/log/nzbget.log was not created and used as intended, since the service does not have permissions to create it.
  • Loading branch information
MichaIng committed Nov 17, 2023
1 parent 2460088 commit 7b03b13
Showing 2 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -17,6 +17,7 @@ Bug fixes:
- DietPi-Software | NFS Server: Resolved a DietPi v8.23 regression where the install failed because of a syntax error. Many thanks to @supertevran for reporting this issue: https://github.com/MichaIng/DietPi/issues/6722
- DietPi-Software | Shairport Sync: Resolved an issue where the install failed because of a missing service user required for the new NQPTP version. Many thanks to @vishnusure for reporting this issue: https://github.com/MichaIng/DietPi/issues/6735
- DietPi-Software | Nextcloud: Resolved an issue where, with Lighttpd webserver, a warning about missing "ocm-provider" rewrite was shown in some cases. Many thanks to @rubinski for reporting this issue: https://dietpi.com/forum/t/nextcloud-update-error-message-nextcloud-ocm-provider/18266
- DietPi-Software | NZBGet: Resolved an issue where the log file /var/log/nzbget.log was not created and used as intended, since the service does not have permissions to create it.

As always, many smaller code performance and stability improvements, visual and spelling fixes have been done, too much to list all of them here. Check out all code changes of this release on GitHub: https://github.com/MichaIng/DietPi/pull/ADDME

5 changes: 3 additions & 2 deletions dietpi/dietpi-software
Original file line number Diff line number Diff line change
@@ -10108,7 +10108,8 @@ _EOF_
Create_User -g dietpi -d /mnt/dietpi_userdata/nzbget nzbget

# Permissions
G_EXEC chown -R nzbget:root /mnt/dietpi_userdata/nzbget
G_EXEC touch /var/log/nzbget.log
G_EXEC chown -R nzbget:root /mnt/dietpi_userdata/nzbget /var/log/nzbget.log
G_EXEC chmod 0600 /mnt/dietpi_userdata/nzbget/nzbget.conf

# Config
@@ -10139,7 +10140,7 @@ _EOF_
[Unit]
Description=NZBGet (DietPi)
Wants=network-online.target
After=network-online.target remote-fs.targe
After=network-online.target remote-fs.target

[Service]
Type=forking

0 comments on commit 7b03b13

Please sign in to comment.