Skip to content
Snippets Groups Projects
Commit 89f4ae36 authored by Kevin S. Hahn's avatar Kevin S. Hahn
Browse files

add -q/quick option to dbinitsort

parent 1d553337
No related branches found
No related tags found
No related merge requests found
......@@ -220,6 +220,7 @@ dbinitsort_parser = subparsers.add_parser(
dbinitsort_parser.add_argument('db_uri', help='database URI')
dbinitsort_parser.add_argument('path', help='filesystem path to data')
dbinitsort_parser.add_argument('sort_path', help='filesystem path to sorted data')
dbinitsort_parser.add_argument('-q', '--quick', action='store_true', help='omit computing of file checksums')
dbinitsort_parser.add_argument('-j', '--json', help='JSON file container users and groups')
dbinitsort_parser.add_argument('-f', '--force', action='store_true', help='wipe out any existing db data')
dbinitsort_parser.set_defaults(func=dbinitsort)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment