From 61c7f690adb77b15593fc7a58c7e3719bf749fea Mon Sep 17 00:00:00 2001 From: David Howells Date: Sat, 12 Apr 2014 14:36:28 +0100 Subject: [PATCH] Implement "bos addhost" Signed-off-by: David Howells --- suite/argparse.py | 7 +++++ suite/commands/bos/addhost.py | 57 +++++++++++++++++++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 suite/commands/bos/addhost.py diff --git a/suite/argparse.py b/suite/argparse.py index 6acb714..fcda4a6 100644 --- a/suite/argparse.py +++ b/suite/argparse.py @@ -29,6 +29,13 @@ def get_volserver(switch, params): from afs.lib.volserver import volserver return volserver(params[0]) +def get_vlservers(switch, params): + from afs.lib.vlserver import vlserver + servers = [] + for i in params: + servers.append(vlserver(params[0])) + return servers + def get_volume_name(switch, params): return params[0] diff --git a/suite/commands/bos/addhost.py b/suite/commands/bos/addhost.py new file mode 100644 index 0000000..e5118bf --- /dev/null +++ b/suite/commands/bos/addhost.py @@ -0,0 +1,57 @@ +# +# AFS Server management toolkit: Add a Volume Location server +# -*- coding: utf-8 -*- +# + +__copyright__ = """ +Copyright (C) 2014 Red Hat, Inc. All Rights Reserved. +Written by David Howells (dhowells@redhat.com) + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public Licence version 2 as +published by the Free Software Foundation. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public Licence for more details. + +You should have received a copy of the GNU General Public Licence +along with this program; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +""" + +from afs.argparse import * +import kafs + +help = "Add a database server machine to the CellServDB file" + +command_arguments = [ + [ "server", get_bosserver, "rs", "" ], + [ "host", get_vlservers, "rm", "" ], + [ "cell", get_cell, "os", "" ], + [ "clone", get_dummy, "fn" ], + [ "noauth", get_auth, "fn" ], + [ "localauth", get_auth, "fn" ], + [ "verbose", get_dummy, "fn" ], + [ "encrypt", get_dummy, "fn" ], +] + +cant_combine_arguments = [ + ( "cell", "localauth" ), + ( "noauth", "localauth" ), +] + +description = r""" +Add a database server machine to the CellServDB file +""" + +def main(params): + cell = params["cell"] + bos_conn = cell.open_bos_server(params["server"], params) + + for i in params["host"]: + name = i.name() + if "clone" in params: + name = "[" + name + "]" + ret = kafs.BOZO_AddCellHost(bos_conn, name) -- 2.49.0