backup.py 688 B

123456789101112131415161718192021222324252627282930
  1. import typer
  2. import config
  3. from misc import apache_ldap, file_backup
  4. app = typer.Typer(help="Test test test", no_args_is_help=True)
  5. cfg = config.Config()
  6. @app.command()
  7. def gcstruct():
  8. """Generate a structure for the given configuration file"""
  9. file_backup.gcstruct_backup(cfg.portal_dir)
  10. @app.command()
  11. def ldap():
  12. cred = cfg.cognos11.credentials
  13. apache_ldap.ldap_backup(cred.username, cred.password, cfg.cognos11.config_dir + "\\apacheds_backup.ldif")
  14. @app.command()
  15. def deployment():
  16. file_backup.copy_deployment(cfg.cognos11.server_dir, cfg.portal_dir + "\\Content\\Deployment")
  17. if __name__ == "__main__":
  18. # app()
  19. # ldap_backup()
  20. deployment()