diff options
| author | bwarsaw | 1998-11-05 15:58:10 +0000 |
|---|---|---|
| committer | bwarsaw | 1998-11-05 15:58:10 +0000 |
| commit | 2a6f7050c6599c57c69dc769711c2b78fa8fac45 (patch) | |
| tree | dc50eab6e437b458d65378736eb9940c77c95b85 /bin | |
| parent | ebdd17d0ea68de383608290355f7d835e5eb8f34 (diff) | |
| download | mailman-2a6f7050c6599c57c69dc769711c2b78fa8fac45.tar.gz mailman-2a6f7050c6599c57c69dc769711c2b78fa8fac45.tar.zst mailman-2a6f7050c6599c57c69dc769711c2b78fa8fac45.zip | |
Make sure archives/private has the proper permissions
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/update | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/bin/update b/bin/update index 3e14ad15f..30c62dd93 100755 --- a/bin/update +++ b/bin/update @@ -1,5 +1,8 @@ #! /usr/bin/env python +"""Use this script to help you update to Mailman 1.0b6 from previous versions. +""" + import sys, os, string import paths from Mailman.MailList import MailList @@ -99,10 +102,9 @@ if __name__ == '__main__': for list in list_names(): print 'Updating mailing list: ', list dolist(list) - - - - + print 'Setting permission o-rw,o+x on archives/private' + os.system('chmod o-rw,o+x %s' % os.path.join(Mailman.mm_cfg.PREFIX, + 'archives/private')) |
