summaryrefslogtreecommitdiffstats
path: root/helper_scripts/start_stop.sh
diff options
context:
space:
mode:
authorM S Vishwanath Bhat <vishwanath@gluster.com>2012-01-12 23:30:00 +0530
committerM S Vishwanath Bhat <vishwanath@gluster.com>2012-01-12 23:35:15 +0530
commitf40ffd8028d3dd4f3eef4a3409c531af941d23f0 (patch)
treec2bcf865c0623761b01ca5929d8caa3c78d527bf /helper_scripts/start_stop.sh
parent254e67dbd7a35d38dbe7a5f525955adeb86f5939 (diff)
renaming helper_scrips->helper_scripts and cleaning up the whitespaces
Change-Id: I6004e4066fab30e14716ef6475c1281270974d2b Signed-off-by: M S Vishwanath Bhat <vishwanath@gluster.com>
Diffstat (limited to 'helper_scripts/start_stop.sh')
-rwxr-xr-xhelper_scripts/start_stop.sh31
1 files changed, 31 insertions, 0 deletions
diff --git a/helper_scripts/start_stop.sh b/helper_scripts/start_stop.sh
new file mode 100755
index 0000000..05ed6fa
--- /dev/null
+++ b/helper_scripts/start_stop.sh
@@ -0,0 +1,31 @@
+#!/bin/bash
+
+
+function _init ()
+{
+ set -u;
+ volume_name=$1;
+}
+
+function start_and_stop ()
+{
+ while true;
+ do
+ gluster --mode=script volume stop $volume_name;
+ sleep 1;
+ gluster volume start $volume_name;
+ sleep 1;
+ done
+
+ return 0;
+}
+
+function main ()
+{
+
+ start_and_stop;
+
+ return 0;
+}
+
+_init "$@" && main "$@" \ No newline at end of file