|
|
@ -1,10 +1,7 @@
|
|
|
|
import argparse
|
|
|
|
import lib.uis.config_ui
|
|
|
|
import configparser
|
|
|
|
|
|
|
|
import logging
|
|
|
|
argparser = lib.uis.config_ui.argparser
|
|
|
|
import lib.cwd
|
|
|
|
|
|
|
|
argparser = argparse.ArgumentParser(description='Tilde administration tools')
|
|
|
|
|
|
|
|
argparser.add_argument('-c', '--config', default=lib.cwd.cwd,
|
|
|
|
|
|
|
|
type=str, help='Path to configuration file', required=False)
|
|
|
|
|
|
|
|
# store_true just stores true when the command is supplied, so it doesn't need choices nor types
|
|
|
|
# store_true just stores true when the command is supplied, so it doesn't need choices nor types
|
|
|
|
argparser.add_argument('-u', '--unapproved', default=False, action="store_true",
|
|
|
|
argparser.add_argument('-u', '--unapproved', default=False, action="store_true",
|
|
|
|
help='only unapproved users. Default is only approved.', required=False)
|
|
|
|
help='only unapproved users. Default is only approved.', required=False)
|
|
|
@ -16,4 +13,4 @@ argparser.add_argument('--Import', default=False, action="store_true",
|
|
|
|
help="Import Users from file. Affects currently only Import.py.\n"
|
|
|
|
help="Import Users from file. Affects currently only Import.py.\n"
|
|
|
|
"Setting this to true will result in -f being interpreted as the input file to import "
|
|
|
|
"Setting this to true will result in -f being interpreted as the input file to import "
|
|
|
|
"users from. The file MUST be a comma separated CSV file being readable having it's "
|
|
|
|
"users from. The file MUST be a comma separated CSV file being readable having it's "
|
|
|
|
"defined columns written in the first line.")
|
|
|
|
"defined columns written in the first line.")
|