CI Report:
https://ci-tests.linuxserver.io/linuxserver/sabnzbd/nightly-8069361f-ls144/index.html
LinuxServer Changes:
No changes
Remote Changes:
Replace unreliable directory access check
The os.access() function can produce false negatives for directory writability, particularly in environments like NFS with UID mapping or root-squashing.
This change replaces the os.access() call with a direct I/O test (creating and deleting a temporary file) to ensure accurate and reliable verification of directory permissions.