From e390256f76fc6980e39ba9e73f189b6306aa54ee Mon Sep 17 00:00:00 2001 From: "Bala.FA" Date: Mon, 8 Aug 2011 19:00:17 +0530 Subject: setup_cifs_config.py ignores already configured servers. Added new setup_cifs_config_all.py helps to setup samba on existing cluster. Signed-off-by: Bala.FA --- .../WebContent/scripts/setup_cifs_config_all.py | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 src/com.gluster.storage.management.gateway/WebContent/scripts/setup_cifs_config_all.py (limited to 'src/com.gluster.storage.management.gateway/WebContent/scripts') diff --git a/src/com.gluster.storage.management.gateway/WebContent/scripts/setup_cifs_config_all.py b/src/com.gluster.storage.management.gateway/WebContent/scripts/setup_cifs_config_all.py new file mode 100755 index 00000000..8dd59c8c --- /dev/null +++ b/src/com.gluster.storage.management.gateway/WebContent/scripts/setup_cifs_config_all.py @@ -0,0 +1,29 @@ +#!/usr/bin/python +# Copyright (C) 2011 Gluster, Inc. +# This file is part of Gluster Management Gateway. +# + +import os +import sys +p1 = os.path.abspath(os.path.dirname(sys.argv[0])) +p2 = "%s/common" % os.path.dirname(p1) +if not p1 in sys.path: + sys.path.append(p1) +if not p2 in sys.path: + sys.path.append(p2) +import Utils + + +def main(): + if len(sys.argv) < 2: + sys.stderr.write("usage: %s SERVER_FILE\n" % os.path.basename(sys.argv[0])) + sys.exit(-1) + + serverFile = sys.argv[1] + + rv = Utils.runCommand(["grun.py", serverFile, "setup_cifs_config.py"]) + sys.exit(rv) + + +if __name__ == "__main__": + main() -- cgit