]> www.infradead.org Git - users/dhowells/kafs-utils.git/commitdiff
Implement "bos uninstall"
authorDavid Howells <dhowells@redhat.com>
Mon, 14 Apr 2014 16:25:09 +0000 (17:25 +0100)
committerDavid Howells <dhowells@redhat.com>
Wed, 16 Apr 2014 07:22:29 +0000 (08:22 +0100)
Signed-off-by: David Howells <dhowells@redhat.com>
suite/commands/bos/uninstall.py [new file with mode: 0644]

diff --git a/suite/commands/bos/uninstall.py b/suite/commands/bos/uninstall.py
new file mode 100644 (file)
index 0000000..5ef0de7
--- /dev/null
@@ -0,0 +1,75 @@
+#
+# AFS Server management toolkit: Revert installed server instances
+# -*- 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.exception import AFSException
+from afs.argparse import *
+from afs.lib.output import *
+import kafs
+
+help = "Revert to the former version of a process's binary file"
+
+command_arguments = [
+    [ "server",         get_bosserver,          "rs",         "<machine name>" ],
+    [ "file",           get_file_names,         "rm",         "<files to uninstall>+" ],
+    [ "dir",            get_path_name,          "os",         "<destination dir>" ],
+    [ "cell",           get_cell,               "os",         "<cell name>" ],
+    [ "noauth",         get_auth,               "fn" ],
+    [ "localauth",      get_auth,               "fn" ],
+    [ "verbose",        get_verbose,            "fn" ],
+    [ "encrypt",        get_dummy,              "fn" ],
+]
+
+cant_combine_arguments = [
+    ( "cell",           "localauth" ),
+    ( "noauth",         "localauth" ),
+]
+
+argument_size_limits = {
+    "file"              : kafs.BOZO_BSSIZE,
+    "dir"               : kafs.BOZO_BSSIZE,
+}
+
+description = r"""
+Revert to the former version of a process's binary file
+"""
+
+def main(params):
+    cell = params["cell"]
+    bos_conn = cell.open_bos_server(params["server"], params)
+
+    if "dir" in params:
+        d = params["dir"]
+    else:
+        d = "/usr/afs/bin"
+
+    for f in params["file"]:
+        i = f.rfind('/')
+        if i > -1:
+            f = f[i + 1:]
+        f = d + "/" + f
+
+        verbose("Reverting file ", f, "\n")
+        try:
+            ret = kafs.BOZO_UnInstall(bos_conn, f)
+        except kafs.AbortBZBUSY:
+            error("can't revert running instance '", f, "'\n")