From 6052a181ddddd7ca5f7c425d56d3eca55fba4aa5 Mon Sep 17 00:00:00 2001 From: Jayapal Date: Tue, 20 May 2014 11:11:15 +0530 Subject: [PATCH] CLOUDSTACK-6714: monitor script echo service command is added with quotes --- systemvm/patches/debian/config/opt/cloud/bin/monitor_service.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systemvm/patches/debian/config/opt/cloud/bin/monitor_service.sh b/systemvm/patches/debian/config/opt/cloud/bin/monitor_service.sh index a5e704d4db4..dfc6463bab1 100755 --- a/systemvm/patches/debian/config/opt/cloud/bin/monitor_service.sh +++ b/systemvm/patches/debian/config/opt/cloud/bin/monitor_service.sh @@ -45,7 +45,7 @@ processname=$(echo $s | cut -d: -f2); service_name=$(echo $s | cut -d: -f3); pidfile=$(echo $s | cut -d: -f4); -echo $service >> $configFile; +echo "$service" >> $configFile; echo $processname >> $configFile echo $service_name >> $configFile echo $pidfile >> $configFile