From commits-return-4138-archive-asf-public=cust-asf.ponee.io@metron.apache.org Wed Nov 21 15:28:20 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 25EE0180668 for ; Wed, 21 Nov 2018 15:28:19 +0100 (CET) Received: (qmail 55611 invoked by uid 500); 21 Nov 2018 14:28:19 -0000 Mailing-List: contact commits-help@metron.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@metron.apache.org Delivered-To: mailing list commits@metron.apache.org Received: (qmail 55602 invoked by uid 99); 21 Nov 2018 14:28:19 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 21 Nov 2018 14:28:19 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 1C915DFF00; Wed, 21 Nov 2018 14:28:19 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: otto@apache.org To: commits@metron.apache.org Message-Id: <60c20abb2de4476f90c3b1c147bec2b4@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: metron git commit: METRON-1890 Metron Vagrant should disable audio (ottobackwards) closes apache/metron#1277 Date: Wed, 21 Nov 2018 14:28:19 +0000 (UTC) Repository: metron Updated Branches: refs/heads/master d599efb08 -> 12e3ae548 METRON-1890 Metron Vagrant should disable audio (ottobackwards) closes apache/metron#1277 Project: http://git-wip-us.apache.org/repos/asf/metron/repo Commit: http://git-wip-us.apache.org/repos/asf/metron/commit/12e3ae54 Tree: http://git-wip-us.apache.org/repos/asf/metron/tree/12e3ae54 Diff: http://git-wip-us.apache.org/repos/asf/metron/diff/12e3ae54 Branch: refs/heads/master Commit: 12e3ae548af6bd408a31fde0d1d8cf23cefdf325 Parents: d599efb Author: ottobackwards Authored: Wed Nov 21 09:28:01 2018 -0500 Committer: otto Committed: Wed Nov 21 09:28:01 2018 -0500 ---------------------------------------------------------------------- metron-deployment/development/centos6/Vagrantfile | 2 ++ metron-deployment/development/fastcapa/centos-7.1/Vagrantfile | 2 ++ metron-deployment/development/fastcapa/centos-7.4/Vagrantfile | 2 ++ metron-deployment/development/ubuntu14/Vagrantfile | 2 ++ 4 files changed, 8 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/metron/blob/12e3ae54/metron-deployment/development/centos6/Vagrantfile ---------------------------------------------------------------------- diff --git a/metron-deployment/development/centos6/Vagrantfile b/metron-deployment/development/centos6/Vagrantfile index 05823a2..50571b4 100644 --- a/metron-deployment/development/centos6/Vagrantfile +++ b/metron-deployment/development/centos6/Vagrantfile @@ -88,6 +88,8 @@ Vagrant.configure(2) do |config| if host.has_key?(:promisc) vb.customize ["modifyvm", :id, "--nicpromisc#{host[:promisc]}", "allow-all"] end + # disable audio, so that the vm doesn't capture the sound / mic + vb.customize ["modifyvm", :id, "--audio", "none"] end end end http://git-wip-us.apache.org/repos/asf/metron/blob/12e3ae54/metron-deployment/development/fastcapa/centos-7.1/Vagrantfile ---------------------------------------------------------------------- diff --git a/metron-deployment/development/fastcapa/centos-7.1/Vagrantfile b/metron-deployment/development/fastcapa/centos-7.1/Vagrantfile index 179ca34..39c8d32 100644 --- a/metron-deployment/development/fastcapa/centos-7.1/Vagrantfile +++ b/metron-deployment/development/fastcapa/centos-7.1/Vagrantfile @@ -58,6 +58,8 @@ Vagrant.configure("2") do |config| # network adapter settings; [Am79C970A|Am79C973|82540EM|82543GC|82545EM|virtio] vb.customize ["modifyvm", :id, "--nicpromisc2", "allow-all"] vb.customize ["modifyvm", :id, "--nictype2","82545EM"] + # disable audio, so that the vm doesn't capture the sound / mic + vb.customize ["modifyvm", :id, "--audio", "none"] end # provision host http://git-wip-us.apache.org/repos/asf/metron/blob/12e3ae54/metron-deployment/development/fastcapa/centos-7.4/Vagrantfile ---------------------------------------------------------------------- diff --git a/metron-deployment/development/fastcapa/centos-7.4/Vagrantfile b/metron-deployment/development/fastcapa/centos-7.4/Vagrantfile index c62a0f1..3e55d09 100644 --- a/metron-deployment/development/fastcapa/centos-7.4/Vagrantfile +++ b/metron-deployment/development/fastcapa/centos-7.4/Vagrantfile @@ -58,6 +58,8 @@ Vagrant.configure("2") do |config| # network adapter settings; [Am79C970A|Am79C973|82540EM|82543GC|82545EM|virtio] vb.customize ["modifyvm", :id, "--nicpromisc2", "allow-all"] vb.customize ["modifyvm", :id, "--nictype2","82545EM"] + # disable audio, so that the vm doesn't capture the sound / mic + vb.customize ["modifyvm", :id, "--audio", "none"] end # provision host http://git-wip-us.apache.org/repos/asf/metron/blob/12e3ae54/metron-deployment/development/ubuntu14/Vagrantfile ---------------------------------------------------------------------- diff --git a/metron-deployment/development/ubuntu14/Vagrantfile b/metron-deployment/development/ubuntu14/Vagrantfile index facc3cc..ab44491 100644 --- a/metron-deployment/development/ubuntu14/Vagrantfile +++ b/metron-deployment/development/ubuntu14/Vagrantfile @@ -83,6 +83,8 @@ Vagrant.configure(2) do |config| node.vm.provider "virtualbox" do |vb| vb.memory = host[:memory] vb.cpus = host[:cpus] + # disable audio, so that the vm doesn't capture the sound / mic + vb.customize ["modifyvm", :id, "--audio", "none"] end end end