[DRE-commits] [vagrant-libvirt] 31/67: Make ip_command work with posix shells

Antonio Terceiro terceiro at moszumanska.debian.org
Sun Apr 24 13:56:03 UTC 2016


This is an automated email from the git hooks/post-receive script.

terceiro pushed a commit to annotated tag 0.0.14
in repository vagrant-libvirt.

commit deb32ddce13f2c1a5ede8e4bd55a5202a1a11cfa
Author: Brian Pitts <brian at polibyte.com>
Date:   Mon Dec 16 14:07:40 2013 -0600

    Make ip_command work with posix shells
---
 lib/vagrant-libvirt/action/connect_libvirt.rb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/vagrant-libvirt/action/connect_libvirt.rb b/lib/vagrant-libvirt/action/connect_libvirt.rb
index e542581..a8ed969 100644
--- a/lib/vagrant-libvirt/action/connect_libvirt.rb
+++ b/lib/vagrant-libvirt/action/connect_libvirt.rb
@@ -68,8 +68,8 @@ module VagrantPlugins
 
           # Setup command for retrieving IP address for newly created machine
           # with some MAC address. Get it from dnsmasq leases table
-          ip_command =  "LEASES=$(find /var/lib/libvirt/dnsmasq/ /var/lib/misc/ -name '*leases');"
-          ip_command << "[[ $LEASES ]] && grep $mac $LEASES | awk '{ print $3 }'"
+          ip_command =  %q[ LEASES=$(find /var/lib/libvirt/dnsmasq/ /var/lib/misc/ -name '*leases'); ]
+          ip_command << %q[ [ -n "$LEASES" ] && grep $mac $LEASES | awk '{ print $3 }' ]
           conn_attr[:libvirt_ip_command] = ip_command
 
           @logger.info("Connecting to Libvirt (#{uri}) ...")

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/vagrant-libvirt.git



More information about the Pkg-ruby-extras-commits mailing list