Index: trunk/tools/subversion/user-management/homedirectorymanager.py |
— | — | @@ -32,7 +32,7 @@ |
33 | 33 | |
34 | 34 | # Add to this array if we add directories that don't have |
35 | 35 | # LDAP accounts associated with them |
36 | | - self.excludedFromModification = ['lost+found', 'SAVE', 'svn-private'] |
| 36 | + self.excludedFromModification = ['lost+found', 'SAVE', 'svn-private', 'autofs_check'] |
37 | 37 | |
38 | 38 | # Limit home directory management to the specified group |
39 | 39 | self.group = None |
Index: trunk/tools/subversion/user-management/manage-exports |
— | — | @@ -51,6 +51,7 @@ |
52 | 52 | if not os.path.exists(self.basedir + project_name): |
53 | 53 | self.log( "Creating a project directory for %s" % (project_name) ) |
54 | 54 | os.mkdir(self.basedir + project_name, 0755) |
| 55 | + os.mkdir(self.basedir + project_name + '/autofs_check', 0755) |
55 | 56 | if options.logfile: |
56 | 57 | hdm.logfile = options.logfile |
57 | 58 | if options.loglevel: |