diff options
Diffstat (limited to 'src/com.gluster.storage.management.gateway/WebContent/scripts/create_volume_cifs_all.py')
-rwxr-xr-x | src/com.gluster.storage.management.gateway/WebContent/scripts/create_volume_cifs_all.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com.gluster.storage.management.gateway/WebContent/scripts/create_volume_cifs_all.py b/src/com.gluster.storage.management.gateway/WebContent/scripts/create_volume_cifs_all.py index 61eaaa97..70b84e6b 100755 --- a/src/com.gluster.storage.management.gateway/WebContent/scripts/create_volume_cifs_all.py +++ b/src/com.gluster.storage.management.gateway/WebContent/scripts/create_volume_cifs_all.py @@ -51,7 +51,7 @@ def main(): rv = Utils.runCommand(["grun.py", serverFile, "create_volume_cifs.py", volumeName] + userList) if rv == 0: if not addVolumeCifsConf(volumeName, userList): - sys.stderr.write("Failed to add volume and user-list in cifs volume configuration\n") + sys.stderr.write("Failed to add volume %s and user-list %s in cifs volume configuration\n" % (volumeName, userList)) sys.exit(11) sys.exit(rv) |