summaryrefslogtreecommitdiffstats
path: root/ipaserver/secrets/service.py
blob: f51c46a30e4caf76e38659c2f0a6a2c645376978 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# Copyright (C) 2017  IPA Project Contributors, see COPYING for license
import argparse

import custodia.server


argparser = argparse.ArgumentParser(
    prog='ipa-custodia',
    description='IPA Custodia service'
)
argparser.add_argument(
    '--debug',
    action='store_true',
    help='Debug mode'
)
argparser.add_argument(
    'configfile',
    nargs='?',
    type=argparse.FileType('r'),
    help="Path to IPA's custodia server config",
    default='/etc/ipa/custodia/custodia.conf'
)


def main():
    return custodia.server.main(argparser)


if __name__ == '__main__':
    main()