mirror of
https://github.com/ceph/ceph
synced 2024-12-26 13:33:57 +00:00
bb93b1a3f0
Signed-off-by: Zack Cerza <zack.cerza@inktank.com>
52 lines
1.2 KiB
Python
52 lines
1.2 KiB
Python
import argparse
|
|
import sys
|
|
|
|
import teuthology.lock
|
|
|
|
|
|
def main():
|
|
status = teuthology.lock.updatekeys(parse_args())
|
|
sys.exit(status)
|
|
|
|
|
|
def parse_args():
|
|
parser = argparse.ArgumentParser(description="""
|
|
Update any hostkeys that have changed. You can list specific machines
|
|
to run on, or use -a to check all of them automatically.
|
|
""")
|
|
parser.add_argument(
|
|
'-v', '--verbose',
|
|
action='store_true',
|
|
default=False,
|
|
help='be more verbose',
|
|
)
|
|
group = parser.add_mutually_exclusive_group()
|
|
group.add_argument(
|
|
'-t', '--targets',
|
|
default=None,
|
|
help='input yaml containing targets to check',
|
|
)
|
|
group.add_argument(
|
|
'-a', '--all',
|
|
action='store_true',
|
|
default=False,
|
|
help='update hostkeys of all machines in the db',
|
|
)
|
|
group.add_argument(
|
|
'machines',
|
|
metavar='MACHINES',
|
|
default=[],
|
|
nargs='*',
|
|
help='hosts to check for updated keys',
|
|
)
|
|
|
|
args = parser.parse_args()
|
|
|
|
if not (args.all or args.targets or args.machines):
|
|
parser.print_usage()
|
|
print "{name}: error: You must specify machines to update".format(
|
|
name='teuthology-updatekeys')
|
|
sys.exit(2)
|
|
|
|
return args
|