mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
Merge remote-tracking branch 'origin/master' into dump-support-output-provider
This commit is contained in:
@@ -3,8 +3,12 @@
|
||||
Octo-DNS Dumper
|
||||
'''
|
||||
|
||||
from __future__ import absolute_import, division, print_function, \
|
||||
unicode_literals
|
||||
from __future__ import (
|
||||
absolute_import,
|
||||
division,
|
||||
print_function,
|
||||
unicode_literals,
|
||||
)
|
||||
|
||||
from octodns.cmds.args import ArgumentParser
|
||||
from octodns.manager import Manager
|
||||
@@ -13,30 +17,49 @@ from octodns.manager import Manager
|
||||
def main():
|
||||
parser = ArgumentParser(description=__doc__.split('\n')[1])
|
||||
|
||||
parser.add_argument('--config-file', required=True,
|
||||
help='The Manager configuration file to use')
|
||||
parser.add_argument('--output-dir', required=True,
|
||||
help='The directory into which the results will be '
|
||||
'written (Note: will overwrite existing files)')
|
||||
parser.add_argument('--output-provider', required=False,
|
||||
help='The configured provider to use when dumping '
|
||||
'records. Must support copy() and directory')
|
||||
parser.add_argument('--lenient', action='store_true', default=False,
|
||||
help='Ignore record validations and do a best effort '
|
||||
'dump')
|
||||
parser.add_argument('--split', action='store_true', default=False,
|
||||
help='Split the dumped zone into a YAML file per '
|
||||
'record')
|
||||
parser.add_argument(
|
||||
'--config-file',
|
||||
required=True,
|
||||
help='The Manager configuration file to use',
|
||||
)
|
||||
parser.add_argument(
|
||||
'--output-dir',
|
||||
required=True,
|
||||
help='The directory into which the results will be '
|
||||
'written (Note: will overwrite existing files)',
|
||||
)
|
||||
parser.add_argument(
|
||||
'--output-provider',
|
||||
required=False,
|
||||
help='The configured provider to use when dumping '
|
||||
'records. Must support copy() and directory',
|
||||
)
|
||||
parser.add_argument(
|
||||
'--lenient',
|
||||
action='store_true',
|
||||
default=False,
|
||||
help='Ignore record validations and do a best effort ' 'dump',
|
||||
)
|
||||
parser.add_argument(
|
||||
'--split',
|
||||
action='store_true',
|
||||
default=False,
|
||||
help='Split the dumped zone into a YAML file per ' 'record',
|
||||
)
|
||||
parser.add_argument('zone', help='Zone to dump')
|
||||
parser.add_argument('source', nargs='+',
|
||||
help='Source(s) to pull data from')
|
||||
parser.add_argument('source', nargs='+', help='Source(s) to pull data from')
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
manager = Manager(args.config_file)
|
||||
manager.dump(zone=args.zone, output_dir=args.output_dir,
|
||||
output_provider=args.output_provider, lenient=args.lenient,
|
||||
split=args.split, sources=args.source)
|
||||
manager.dump(
|
||||
zone=args.zone,
|
||||
output_dir=args.output_dir,
|
||||
output_provider=args.output_provider,
|
||||
lenient=args.lenient,
|
||||
split=args.split,
|
||||
sources=args.source,
|
||||
)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
||||
Reference in New Issue
Block a user