# Now delete the on disk representation of principals rmdir(oldPrincipals) log.debug( "Removed the old principal directory at '%s'." % (oldPrincipals,) ) calRoot = os.path.join(docRoot, "calendars") if os.path.exists(calRoot): uidHomes = os.path.join(calRoot, "__uids__") # Move calendar homes to new location: log.warn("Moving calendar homes to %s" % (uidHomes,)) if os.path.exists(uidHomes): for home in os.listdir(uidHomes): # MOR: This assumes no UID is going to be 2 chars or less if len(home) <= 2: continue oldHome = os.path.join(uidHomes, home) if not os.path.isdir(oldHome): # Skip non-directories continue newHome = os.path.join(uidHomes, home[0:2], home[2:4], home) moveCalendarHome(oldHome, newHome, uid=uid, gid=gid)
# Now delete the on disk representation of principals rmdir(oldPrincipals) log.debug( "Removed the old principal directory at '{path}'.", path=oldPrincipals, ) calRoot = os.path.join(docRoot, "calendars") if os.path.exists(calRoot): uidHomes = os.path.join(calRoot, "__uids__") # Move calendar homes to new location: log.warn("Moving calendar homes to {path}", path=uidHomes) if os.path.exists(uidHomes): for home in os.listdir(uidHomes): # MOR: This assumes no UID is going to be 2 chars or less if len(home) <= 2: continue oldHome = os.path.join(uidHomes, home) if not os.path.isdir(oldHome): # Skip non-directories continue newHome = os.path.join(uidHomes, home[0:2], home[2:4], home)