You are not logged in.
Hi,
after an upgrade to cups-2.0.0-2-x86_64 pacman warn me about different rights on filesystem and package:
warning: directory permissions differ on /var/cache/cups/
filesystem: 775 package: 770I don't know, what rights are the right ones, or what causes this warning, because older cups-upgrades do not show this warning.
$ ls -l /var/cache/
total 28
drwxrwxr-x 3 root lp 4096 Oct 31 14:38 cups
[...]Last edited by quiqueck (2014-11-05 15:25:46)
Offline
always use the permissions given for package.
The 770 is more restrictive (it limits access owner and group members only) , while 775 is much more permissive and could cause security issues.
you can use a filemanger like midnight commander to change the folde rpermissions, or use chown .
Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.
clean chroot building not flexible enough ?
Try clean chroot manager by graysky
Offline
I got the same message when I installed the new CUPS. I ignored it.
Tim
Offline
@quiqueck: You can use the -d flag to display a directory rather than its contents:
$ ls -ld /var/cache/cups
drwxrwx--- 3 root lp 4096 Nov 5 09:28 /var/cache/cupsJust FYI. I've been using Linux for years and only recently figured this out! <facepalm>
But whether the Constitution really be one thing, or another, this much is certain - that it has either authorized such a government as we have had, or has been powerless to prevent it. In either case, it is unfit to exist.
-Lysander Spooner
Offline
Thanks for your replys.
I changed the rights with:
# chmod 770 /var/cache/cups/:-)
Offline