Repository: cloudstack Updated Branches: refs/heads/master 1c81b241e -> ad6ac9bb1
CLOUDSTACK-8488: network with LB fails to restart as the bash script mangles the escape characters, fixed Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/ad6ac9bb Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/ad6ac9bb Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/ad6ac9bb Branch: refs/heads/master Commit: ad6ac9bb10eb9744d672e4b715eb6afcc22f0343 Parents: 1c81b24 Author: Abhinandan Prateek <[email protected]> Authored: Fri May 22 16:24:20 2015 +0530 Committer: Abhinandan Prateek <[email protected]> Committed: Fri May 22 16:24:20 2015 +0530 ---------------------------------------------------------------------- systemvm/patches/debian/config/opt/cloud/bin/vr_cfg.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/ad6ac9bb/systemvm/patches/debian/config/opt/cloud/bin/vr_cfg.sh ---------------------------------------------------------------------- diff --git a/systemvm/patches/debian/config/opt/cloud/bin/vr_cfg.sh b/systemvm/patches/debian/config/opt/cloud/bin/vr_cfg.sh index dffa45a..7ed7d6b 100755 --- a/systemvm/patches/debian/config/opt/cloud/bin/vr_cfg.sh +++ b/systemvm/patches/debian/config/opt/cloud/bin/vr_cfg.sh @@ -77,7 +77,7 @@ do file=$line log_it "VR config: creating file: $file" rm -f $file - while read line + while read -r line do if [ "$line" == "</file>" ] then
