CLOUDSTACK-7143: remove erroneous backticks

The backticks in the Vagrantfile template were getting evaluated by bash.
This caused some harmless but confusing error messages to appear on running
the build. Easy fix is to remove them.


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/598c472b
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/598c472b
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/598c472b

Branch: refs/heads/master
Commit: 598c472b7372e908fcf3a9d19463d3c8b4b3b0bd
Parents: 35347f8
Author: Leo Simons <lsim...@schubergphilis.com>
Authored: Fri Jul 25 15:15:01 2014 +0200
Committer: Rohit Yadav <rohit.ya...@shapeblue.com>
Committed: Mon Sep 22 21:38:16 2014 +0200

----------------------------------------------------------------------
 tools/appliance/build.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/598c472b/tools/appliance/build.sh
----------------------------------------------------------------------
diff --git a/tools/appliance/build.sh b/tools/appliance/build.sh
index 96caf78..2d611c4 100755
--- a/tools/appliance/build.sh
+++ b/tools/appliance/build.sh
@@ -467,9 +467,9 @@ function vagrant_export() {
   cp "${disk}" "box/${appliance_build_name}/box.ovf"
   cat >box/${appliance_build_name}/Vagrantfile <<END
 Vagrant::Config.run do |config|
-  # This Vagrantfile is auto-generated by `vagrant package` to contain
+  # This Vagrantfile is auto-generated by vagrant package to contain
   # the MAC address of the box. Custom configuration should be placed in
-  # the actual `Vagrantfile` in this box.
+  # the actual Vagrantfile in this box.
   config.vm.base_mac = "${mac_address}"
 end
 

Reply via email to