diff options
| author | Shireesh Anjal <anjalshireesh@gmail.com> | 2011-08-08 07:06:22 -0700 |
|---|---|---|
| committer | Shireesh Anjal <anjalshireesh@gmail.com> | 2011-08-08 07:06:22 -0700 |
| commit | 841e7040f46daa1797ef4a7eccc4d8493e3ab716 (patch) | |
| tree | 2587d083e7791ca4e1d246cf0cf6c1cdaa2bc0db /src/com.gluster.storage.management.gateway/WebContent/scripts | |
| parent | 68c3ae605a518460db1a21f2671ea959d4782082 (diff) | |
| parent | 0d0f69f75ef78e03452ca5d0b989542a156168c1 (diff) | |
Merge pull request #203 from balamurugana/master
Instead of id_rsa/id_rsa.pub, gluster.pem and gluster.pub are created in /opt/glustermg/keys
Diffstat (limited to 'src/com.gluster.storage.management.gateway/WebContent/scripts')
| -rwxr-xr-x | src/com.gluster.storage.management.gateway/WebContent/scripts/setup_cifs_config_all.py | 29 |
1 files changed, 29 insertions, 0 deletions
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. <http://www.gluster.com> +# 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() |
