rp_meyzieu_manager: removing cryptdb option which doesn't work anymore

This commit is contained in:
Jérôme Schneider 2014-09-15 15:52:34 +02:00
parent 67e149cc39
commit cc457e38d2
1 changed files with 1 additions and 6 deletions

View File

@ -15,7 +15,7 @@ from mandaye import config
from mandaye.log import logger
def get_cmd_options():
usage = "usage: %prog --createdb|--upgradedb|--cryptpwd"
usage = "usage: %prog --createdb|--upgradedb"
parser = OptionParser(usage=usage)
parser.add_option("--createdb",
dest="createdb",
@ -66,11 +66,6 @@ def main():
alembic_cfg.set_main_option("script_location", global_config.alembic_script_path)
command.upgrade(alembic_cfg, "head")
logger.info("Database upgraded")
if options.cryptpwd:
from mandaye.backends.default import ManagerSPUser
for user in ManagerSPUser.all():
user.password = encrypt_pwd(user.password)
ManagerSPUser.save()
if __name__ == "__main__":
main()