Description of problem: postfix-script generating numerous "warning: group or other writable:" messages Problem caused by test of soft link permissions instead of link target. Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: 1. systemctl start postfix 2. systemctl status postfix Workaround: Add -L argument to the find perm commands: # grep -- ' -L ' /usr/libexec/postfix/postfix-script find $todo \( -L -perm -020 -o -perm -002 \) \ find $data_directory/. \( -L -perm -020 -o -perm -002 \) \ Reproducible: Steps to Reproduce:
assigning to maintainer
CC: (none) => marja11Assignee: bugsquad => luis.daniel.lucio
-L would just have it checking the same files twice. There's no reason it should be examining the permissions on symlinks. I used "\! -type l" in the find commands to avoid this.
Status: NEW => RESOLVEDResolution: (none) => FIXED