Hilfetext weiter verbessern
parent
b3c559718c
commit
01781e0760
|
|
@ -9,23 +9,25 @@ from functions import DatenpolFunctions
|
|||
|
||||
def main():
|
||||
def _usage():
|
||||
print '\nVerwendung: dp <environment> <command> [<module_name>/<setup_function>]\n'
|
||||
print 'Commands:\n'
|
||||
print '\nVerwendung: dp <environment> <command> [<module_name>/<setup_function>]'
|
||||
print ' dp list-envs\n'
|
||||
print 'Commands:'
|
||||
print ' create Neue Datenbank erstellen'
|
||||
print ' create_from_dump Neue Datenbank von Dump erstellen'
|
||||
print ' setup Modulinstallation, Konfigurationen'
|
||||
print ' setup_part setup_function Aufruf eines einzelnen Setup-Schrittes'
|
||||
print ' "setup_part info" listet die verfügbaren Setup-Schritte auf'
|
||||
print ' rollout Setzt Dokumentnummern, importiert Benutzer, setzt dp_dmi auf noupdate, ...'
|
||||
print ' "setup_part info" listet die verfügbaren'
|
||||
print ' Setup-Schritte auf'
|
||||
print ' rollout Setzt Dokumentnummern, importiert Benutzer,'
|
||||
print ' setzt dp_dmi auf noupdate, ...'
|
||||
print ' update module_name Modul updaten'
|
||||
print ' install module_name Modul installieren'
|
||||
print ' uninstall module_name Modul deinstallieren'
|
||||
print ' cancel_upgrade module_name Abbruch Modulinstallation'
|
||||
print ' update_modules Update aller Module in der config-Modulliste'
|
||||
print ' update_all Update aller verfügbaren Module'
|
||||
print ' list-envs Environments auflisten'
|
||||
print ' anonym Daten anonymisieren (Namen, Adresse, E-Mail, ...)'
|
||||
print ' invalidate_email E-Mail Adressen invalidieren (@ > #)\n'
|
||||
print ' invalidate_email E-Mail Adressen invalidieren (@ > #)'
|
||||
sys.exit(3)
|
||||
|
||||
argv = sys.argv[1:]
|
||||
|
|
|
|||
Loading…
Reference in New Issue