From: David Howells Date: Fri, 11 Apr 2014 23:29:02 +0000 (+0100) Subject: Implement "bos getrestricted" X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=9c80ceb89cb7f56391475bd72ce37c8b25dca9c9;p=users%2Fdhowells%2Fkafs-utils.git Implement "bos getrestricted" Signed-off-by: David Howells --- diff --git a/rpc-api/bos.xg b/rpc-api/bos.xg index 4eb67f5..edbb8a1 100644 --- a/rpc-api/bos.xg +++ b/rpc-api/bos.xg @@ -231,3 +231,5 @@ GetInstanceStrings (IN string instance, OUT string spare1, OUT string spare2, OUT string spare3) = 114; + +GetRestricted (OUT uint32_t *isrestricted) = 115; diff --git a/suite/commands/bos/getrestricted.py b/suite/commands/bos/getrestricted.py new file mode 100644 index 0000000..68a9827 --- /dev/null +++ b/suite/commands/bos/getrestricted.py @@ -0,0 +1,55 @@ +# +# AFS Server management toolkit: Determine server restrictedness +# -*- 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 = "Display whether a bos server is restricted or not" + +command_arguments = [ + [ "server", get_bosserver, "rs", "" ], + [ "cell", get_cell, "os", "" ], + [ "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""" +Display whether a bos server is restricted or not +""" + +def main(params): + cell = params["cell"] + bos_conn = cell.open_bos_server(params["server"], params) + + ret = kafs.BOZO_GetRestricted(bos_conn) + if ret.isrestricted: + print("Restricted mode is on") + else: + print("Restricted mode is off")