summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorbwarsaw2001-10-04 14:45:36 +0000
committerbwarsaw2001-10-04 14:45:36 +0000
commit7c4022fec42d9103ca977d62fc838f2deedbd7da (patch)
tree476669a0915519c192a33d9acc016c91cd9eba14 /contrib
parent5bb21215da4d8f687dbad358381f55da0d472616 (diff)
downloadmailman-7c4022fec42d9103ca977d62fc838f2deedbd7da.tar.gz
mailman-7c4022fec42d9103ca977d62fc838f2deedbd7da.tar.zst
mailman-7c4022fec42d9103ca977d62fc838f2deedbd7da.zip
Diffstat (limited to 'contrib')
-rw-r--r--contrib/securelinux_fix.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/securelinux_fix.py b/contrib/securelinux_fix.py
index 425b2d502..bf6307f92 100644
--- a/contrib/securelinux_fix.py
+++ b/contrib/securelinux_fix.py
@@ -21,9 +21,9 @@
If you use Solar Designer's secure-linux patch, it prevents a process from
linking (hard link) to a file it doesn't own. As a result Mailman has to be
changed so that the whole tree is owned by Mailman, and the CGIs and some of
-the programs in the bin tree (the ones that lock config.db files) are SUID
-Mailman. The idea is that config.db files have to be owned by the mailman UID
-and only touched by programs that are UID mailman.
+the programs in the bin tree (the ones that lock config.pck files) are SUID
+Mailman. The idea is that config.pck files have to be owned by the mailman
+UID and only touched by programs that are UID mailman.
If you have to run check_perms -f, make sure to also run securelinux_fix.py
-f, which applies the necessary permission fixes.
@@ -93,8 +93,8 @@ class CheckFixUid:
os.chown(paths.prefix + '/mail/wrapper', MAILMAN_UID, MAILMAN_GID)
os.chmod(paths.prefix + '/mail/wrapper', 06755)
- print "\nEnsuring that all config.db files are owned by Mailman"
- cdbs = glob.glob(paths.prefix + '/lists/*/config.db*')
+ print "\nEnsuring that all config.pck files are owned by Mailman"
+ cdbs = glob.glob(paths.prefix + '/lists/*/config.pck*')
for file in cdbs:
stat = os.stat(file)