Fix more issues with cups

This commit is contained in:
2025-12-05 13:28:42 +02:00
parent 8757609118
commit fb6acb00cb
3 changed files with 15 additions and 4 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/sh
# Exit if directory does not exist
[ -d /etc/cups ] || exit 0
# Fix ownership of files in /etc/cups
[ `stat -c '%g' /etc/cups` != 209 ] && chown -R 0:209 /etc/cups
# Ensure script exits cleanly
exit 0