Fix more issues with cups
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user