From f6fb9016a189506d30fed0f710e1eadd8087c467 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 9 Apr 2014 14:57:16 -0700 Subject: [PATCH] core: can specify a "post_up_message" [GH-1968] --- CHANGELOG.md | 8 ++++++++ plugins/commands/up/command.rb | 17 +++++++++++++++++ plugins/kernel_v2/config/vm.rb | 3 +++ templates/locales/en.yml | 5 +++++ test/unit/plugins/kernel_v2/config/vm_test.rb | 13 +++++++++++++ 5 files changed, 46 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8ebd4191f..f14e793a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 1.6.0 (unreleased) + +FEATURES: + + - Can now specify a `post_up_message` in your Vagrantfile that is shown + after a `vagrant up`. This is useful for putting some instructions of how + to use the development environment. + ## 1.5.4 (April 21, 2014) IMPROVEMENTS: diff --git a/plugins/commands/up/command.rb b/plugins/commands/up/command.rb index 3b000fc60..674e81df8 100644 --- a/plugins/commands/up/command.rb +++ b/plugins/commands/up/command.rb @@ -54,6 +54,7 @@ module VagrantPlugins @logger.debug("'Up' each target VM...") # Build up the batch job of what we'll do + machines = [] @env.batch(options[:parallel]) do |batch| names = argv if names.empty? then @@ -65,10 +66,26 @@ module VagrantPlugins :name => machine.name, :provider => machine.provider_name)) + machines << machine + batch.action(machine, :up, options) end end + # Output the post-up messages that we have, if any + machines.each do |m| + next if !m.config.vm.post_up_message + next if m.config.vm.post_up_message == "" + + # Add a newline to separate things. + @env.ui.info("", prefix: false) + + m.ui.success(I18n.t( + "vagrant.post_up_message", + name: m.name.to_s, + message: m.config.vm.post_up_message)) + end + # Success, exit status 0 0 end diff --git a/plugins/kernel_v2/config/vm.rb b/plugins/kernel_v2/config/vm.rb index 63f07f1c5..ebd60bfeb 100644 --- a/plugins/kernel_v2/config/vm.rb +++ b/plugins/kernel_v2/config/vm.rb @@ -29,6 +29,7 @@ module VagrantPlugins attr_accessor :graceful_halt_timeout attr_accessor :guest attr_accessor :hostname + attr_accessor :post_up_message attr_accessor :usable_port_range attr_reader :provisioners @@ -47,6 +48,7 @@ module VagrantPlugins @graceful_halt_timeout = UNSET_VALUE @guest = UNSET_VALUE @hostname = UNSET_VALUE + @post_up_message = UNSET_VALUE @provisioners = [] @usable_port_range = UNSET_VALUE @@ -321,6 +323,7 @@ module VagrantPlugins @guest = nil if @guest == UNSET_VALUE @hostname = nil if @hostname == UNSET_VALUE @hostname = @hostname.to_s if @hostname + @post_up_message = "" if @post_up_message == UNSET_VALUE if @usable_port_range == UNSET_VALUE @usable_port_range = (2200..2250) diff --git a/templates/locales/en.yml b/templates/locales/en.yml index 3dbbdb438..09395c102 100644 --- a/templates/locales/en.yml +++ b/templates/locales/en.yml @@ -165,6 +165,11 @@ en: and reinstalled: %{names} + post_up_message: |- + Machine '%{name}' has a post `vagrant up` message. This is a message + from the creator of the Vagrantfile, and not from Vagrant itself: + + %{message} provisioner_cleanup: |- Running cleanup tasks for '%{name}' provisioner... rsync_auto_initial: |- diff --git a/test/unit/plugins/kernel_v2/config/vm_test.rb b/test/unit/plugins/kernel_v2/config/vm_test.rb index 907f5d4f9..24d0a89cf 100644 --- a/test/unit/plugins/kernel_v2/config/vm_test.rb +++ b/test/unit/plugins/kernel_v2/config/vm_test.rb @@ -170,6 +170,19 @@ describe VagrantPlugins::Kernel_V2::VMConfig do end end + describe "#post_up_message" do + it "defaults to empty string" do + subject.finalize! + expect(subject.post_up_message).to eq("") + end + + it "can be set" do + subject.post_up_message = "foo" + subject.finalize! + expect(subject.post_up_message).to eq("foo") + end + end + describe "#provider and #get_provider_config" do it "compiles the configurations for a provider" do subject.provider "virtualbox" do |vb|