From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9209B138010 for ; Fri, 24 Aug 2012 04:19:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 724FDE06B5; Fri, 24 Aug 2012 04:18:43 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 40B7AE06B5 for ; Fri, 24 Aug 2012 04:18:43 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9FA6933E0A3 for ; Fri, 24 Aug 2012 04:18:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 3A3CFE5445 for ; Fri, 24 Aug 2012 04:18:40 +0000 (UTC) From: "Brian Harring" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Harring" Message-ID: <1334447278.471f96ec4b93b9b303e2b7c7eee388c8a0e8ab72.ferringb@gentoo> Subject: [gentoo-commits] proj/kvm-tools:master commit in: app-emulation/qemu-init-scripts/files/ X-VCS-Repository: proj/kvm-tools X-VCS-Files: app-emulation/qemu-init-scripts/files/qemu-init-script X-VCS-Directories: app-emulation/qemu-init-scripts/files/ X-VCS-Committer: ferringb X-VCS-Committer-Name: Brian Harring X-VCS-Revision: 471f96ec4b93b9b303e2b7c7eee388c8a0e8ab72 X-VCS-Branch: master Date: Fri, 24 Aug 2012 04:18:40 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: daabca44-bf6b-42b1-bfe2-917835492356 X-Archives-Hash: 08caef0ee560ea7479a1c1007c8f8a87 commit: 471f96ec4b93b9b303e2b7c7eee388c8a0e8ab72 Author: Brian Harring chromium org> AuthorDate: Sat Apr 14 21:02:22 2012 +0000 Commit: Brian Harring gentoo org> CommitDate: Sat Apr 14 23:47:58 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kvm-tools.git;a=commit;h=471f96ec Protect against ',' in DISKIMAGE pathways. --- .../qemu-init-scripts/files/qemu-init-script | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/app-emulation/qemu-init-scripts/files/qemu-init-script b/app-emulation/qemu-init-scripts/files/qemu-init-script index 23b12ef..a42e866 100644 --- a/app-emulation/qemu-init-scripts/files/qemu-init-script +++ b/app-emulation/qemu-init-scripts/files/qemu-init-script @@ -112,7 +112,7 @@ start() { --pidfile ${PIDFILE} \ -- -daemonize -pidfile ${PIDFILE} -monitor unix:${MONITOR},server,nowait \ -runas ${DROP_USER} -name ${VMNAME} \ - -drive file="$DISKIMAGE",if=${DRIVE_MODEL:-virtio},cache=${DRIVE_CACHE:-none} \ + -drive file="${DISKIMAGE//,/,,}",if=${DRIVE_MODEL:-virtio},cache=${DRIVE_CACHE:-none} \ "${NIC_COMMAND[@]}" \ ${DISABLE_KVM:---enable-kvm} \ ${MEMORY:+-m ${MEMORY}} ${SMP:+-smp ${SMP}} ${VNC:+-vnc ${VNC}} ${OTHER_ARGS} From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1SJChf-0001iu-0L for garchives@archives.gentoo.org; Sat, 14 Apr 2012 23:48:27 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 130E7E0BDE; Sat, 14 Apr 2012 23:48:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D3865E0BDE for ; Sat, 14 Apr 2012 23:48:09 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4020B1B403B for ; Sat, 14 Apr 2012 23:48:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 03D36E542C for ; Sat, 14 Apr 2012 23:48:08 +0000 (UTC) From: "Brian Harring" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Harring" Message-ID: <1334447278.471f96ec4b93b9b303e2b7c7eee388c8a0e8ab72.ferringb@gentoo> Subject: [gentoo-commits] proj/kvm-tools:ferringb commit in: app-emulation/qemu-init-scripts/files/ X-VCS-Repository: proj/kvm-tools X-VCS-Files: app-emulation/qemu-init-scripts/files/qemu-init-script X-VCS-Directories: app-emulation/qemu-init-scripts/files/ X-VCS-Committer: ferringb X-VCS-Committer-Name: Brian Harring X-VCS-Revision: 471f96ec4b93b9b303e2b7c7eee388c8a0e8ab72 X-VCS-Branch: ferringb Date: Sat, 14 Apr 2012 23:48:08 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: 8f7108d2-8c45-4aad-bf01-d9c0e023a641 X-Archives-Hash: 86a38f5d0aade520b3993610dee9191e Message-ID: <20120414234808.u6I6Cw-b66FIoiCWC39exCpoT04fQm2vyeH0nkeXVLA@z> commit: 471f96ec4b93b9b303e2b7c7eee388c8a0e8ab72 Author: Brian Harring chromium org> AuthorDate: Sat Apr 14 21:02:22 2012 +0000 Commit: Brian Harring gentoo org> CommitDate: Sat Apr 14 23:47:58 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/kvm-tools.git= ;a=3Dcommit;h=3D471f96ec Protect against ',' in DISKIMAGE pathways. --- .../qemu-init-scripts/files/qemu-init-script | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/app-emulation/qemu-init-scripts/files/qemu-init-script b/app= -emulation/qemu-init-scripts/files/qemu-init-script index 23b12ef..a42e866 100644 --- a/app-emulation/qemu-init-scripts/files/qemu-init-script +++ b/app-emulation/qemu-init-scripts/files/qemu-init-script @@ -112,7 +112,7 @@ start() { --pidfile ${PIDFILE} \ -- -daemonize -pidfile ${PIDFILE} -monitor unix:${MONITOR},server,nowa= it \ -runas ${DROP_USER} -name ${VMNAME} \ - -drive file=3D"$DISKIMAGE",if=3D${DRIVE_MODEL:-virtio},cache=3D${DRIVE= _CACHE:-none} \ + -drive file=3D"${DISKIMAGE//,/,,}",if=3D${DRIVE_MODEL:-virtio},cache=3D= ${DRIVE_CACHE:-none} \ "${NIC_COMMAND[@]}" \ ${DISABLE_KVM:---enable-kvm} \ ${MEMORY:+-m ${MEMORY}} ${SMP:+-smp ${SMP}} ${VNC:+-vnc ${VNC}} ${OTHE= R_ARGS}