forked from pool/vagrant
Dan Čermák
1a3435b908
Bump the version of i18n, rubyzip and net-ssh OBS-URL: https://build.opensuse.org/request/show/770161 OBS-URL: https://build.opensuse.org/package/show/Virtualization:vagrant/vagrant?expand=0&rev=40
41 lines
1.3 KiB
Diff
41 lines
1.3 KiB
Diff
From 2aceecad34427d322bb011e5964a3c7d5818c3ae Mon Sep 17 00:00:00 2001
|
|
From: Antonio Terceiro <terceiro@debian.org>
|
|
Date: Sat, 11 Oct 2014 16:54:58 -0300
|
|
Subject: [PATCH 01/13] bin/vagrant: silence warning about installer
|
|
|
|
Signed-off-by: Johannes Kastl <kastl@b1-systems.de>
|
|
---
|
|
bin/vagrant | 16 ----------------
|
|
1 file changed, 16 deletions(-)
|
|
|
|
diff --git a/bin/vagrant b/bin/vagrant
|
|
index 0e6abdcef..9b9233397 100755
|
|
--- a/bin/vagrant
|
|
+++ b/bin/vagrant
|
|
@@ -144,22 +144,6 @@ begin
|
|
logger.debug("Creating Vagrant environment")
|
|
env = Vagrant::Environment.new(opts)
|
|
|
|
- # If we are running with the Windows Subsystem for Linux do
|
|
- # some extra setup to allow access to Vagrant managed machines
|
|
- # outside the subsystem
|
|
- if Vagrant::Util::Platform.wsl?
|
|
- recreate_env = Vagrant::Util::Platform.wsl_init(env, logger)
|
|
- if recreate_env
|
|
- logger.info("Re-creating Vagrant environment due to WSL modifications.")
|
|
- env = Vagrant::Environment.new(opts)
|
|
- end
|
|
- end
|
|
-
|
|
- if !Vagrant.in_installer? && !Vagrant.very_quiet?
|
|
- # If we're not in the installer, warn.
|
|
- env.ui.warn(I18n.t("vagrant.general.not_in_installer") + "\n", prefix: false)
|
|
- end
|
|
-
|
|
# Acceptable experimental flag values include:
|
|
#
|
|
# Unset - Disables experimental features
|
|
--
|
|
2.25.0
|
|
|