mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-23 07:33:27 -06:00
c27233e3a0
See: https://pagure.io/freeipa/issue/8882 Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com> Reviewed-By: Rob Crittenden <rcritten@redhat.com>
31 lines
644 B
Python
31 lines
644 B
Python
# Copyright (C) 2017 IPA Project Contributors, see COPYING for license
|
|
import argparse
|
|
|
|
import ipaserver.custodia.server # pylint: disable=relative-import
|
|
|
|
|
|
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 ipaserver.custodia.server.main(argparser)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|