diff options
author | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-18 22:26:04 +0000 |
---|---|---|
committer | alexeypa@chromium.org <alexeypa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-18 22:26:04 +0000 |
commit | c20c7bd99790252744951ad5a6befc737afdd25c (patch) | |
tree | aa096d92dc0c9a27f20ea29db52a649aa3cdb36d /remoting/host | |
parent | b63729fc09bda64fcf024b37a355758bcdf694df (diff) | |
download | chromium_src-c20c7bd99790252744951ad5a6befc737afdd25c.zip chromium_src-c20c7bd99790252744951ad5a6befc737afdd25c.tar.gz chromium_src-c20c7bd99790252744951ad5a6befc737afdd25c.tar.bz2 |
Ignore errors when installing the firewall exception for Chromoting Host.
WiX Firewall Extension fails if the Windows Firewall service is not started, see
http://sourceforge.net/tracker/index.php?func=detail&aid=2077095&group_id=105970&atid=642714
BUG=132887
Review URL: https://chromiumcodereview.appspot.com/10566012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@142828 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting/host')
-rw-r--r-- | remoting/host/installer/chromoting.wxs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/host/installer/chromoting.wxs b/remoting/host/installer/chromoting.wxs index 7f1ce86..009b450 100644 --- a/remoting/host/installer/chromoting.wxs +++ b/remoting/host/installer/chromoting.wxs @@ -152,7 +152,7 @@ <fire:FirewallException xmlns:fire="http://schemas.microsoft.com/wix/FirewallExtension" Id="me2me_firewall_exception" - IgnoreFailure="no" + IgnoreFailure="yes" Name="$(var.FirewallName)" Profile="all" Program="[#remoting_me2me_host.exe]" |