mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-26 08:51:50 -06:00
82d0279381
pylint is somehow confused about us importing custodia in ipaserver.secrets.* modules, disable the check for these. https://pagure.io/freeipa/issue/6874 Reviewed-By: Alexander Bokovoy <abokovoy@redhat.com>
31 lines
624 B
Python
31 lines
624 B
Python
# Copyright (C) 2017 IPA Project Contributors, see COPYING for license
|
|
import argparse
|
|
|
|
import 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 custodia.server.main(argparser)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|