summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2015-11-03 19:21:29 +0100
committervarac <varacanero@zeromail.org>2015-11-17 19:51:11 +0100
commitbe6ef466b031498cdeb030cff8b77ed5e6d10566 (patch)
treeaecdb4a9d4ba3a7be62d99c688689548c5610038 /lib
parent62edc7545669aaa39066967fbd7a301667e17777 (diff)
[feat] Use jessie for vagrant basebox
- Related: #6920
Diffstat (limited to 'lib')
-rw-r--r--lib/leap_cli/commands/vagrant.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/leap_cli/commands/vagrant.rb b/lib/leap_cli/commands/vagrant.rb
index e2dfb8a9..bf683cb6 100644
--- a/lib/leap_cli/commands/vagrant.rb
+++ b/lib/leap_cli/commands/vagrant.rb
@@ -14,7 +14,7 @@ module LeapCli; module Commands
"`config.vm.box` option. The value here should be the name of an installed box or a "+
"shorthand name of a box in HashiCorp's Atlas.",
:arg_name => 'BASEBOX',
- :default_value => 'LEAP/wheezy'
+ :default_value => 'LEAP/jessie'
)
start.action do |global_options,options,args|
vagrant_command(["up", "sandbox on"], args, options)
@@ -146,7 +146,7 @@ module LeapCli; module Commands
lines = []
netmask = IPAddr.new('255.255.255.255').mask(LeapCli.leapfile.vagrant_network.split('/').last).to_s
- basebox = options[:basebox] || 'LEAP/wheezy'
+ basebox = options[:basebox] || 'LEAP/jessie'
if vagrant_version <= Gem::Version.new('1.1.0')
lines << %[Vagrant::Config.run do |config|]