diff options
author | Tim <timothyasir@gluster.com> | 2011-08-10 17:04:12 +0530 |
---|---|---|
committer | Shireesh Anjal <shireesh@gluster.com> | 2011-08-10 18:48:55 +0530 |
commit | f92d1a0524b7c7cf4aee9f736f6833d29a163a8b (patch) | |
tree | 3b3f079a85b4a8658578183ac876d138632de765 /src/com.gluster.storage.management.gateway/WebContent/scripts/setup_cifs_config_all.py | |
parent | c34d9abeefcae4ba87cc6b54eed8644d37714c8a (diff) |
Restructured backend gateway scripts
Diffstat (limited to 'src/com.gluster.storage.management.gateway/WebContent/scripts/setup_cifs_config_all.py')
-rwxr-xr-x | src/com.gluster.storage.management.gateway/WebContent/scripts/setup_cifs_config_all.py | 29 |
1 files changed, 0 insertions, 29 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 deleted file mode 100755 index 8dd59c8c..00000000 --- a/src/com.gluster.storage.management.gateway/WebContent/scripts/setup_cifs_config_all.py +++ /dev/null @@ -1,29 +0,0 @@ -#!/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() |