diff --git a/plugins/commands/global-status/command.rb b/plugins/commands/global-status/command.rb index 5cfadcc5e..ce8e30784 100644 --- a/plugins/commands/global-status/command.rb +++ b/plugins/commands/global-status/command.rb @@ -69,7 +69,7 @@ module VagrantPlugins @env.ui.machine("metadata", "machine-count", entries.length.to_s); entries.each do |entry| opts = { "target" => entry.send(:name).to_s } - @env.ui.machine("machine-id", entry.send(:id).to_s, opts) + @env.ui.machine("machine-id", entry.send(:id).to_s[0...7], opts) @env.ui.machine("provider-name", entry.send(:provider).to_s, opts) @env.ui.machine("machine-home", entry.send(:vagrantfile_path).to_s, opts) @env.ui.machine("state", entry.send(:state).to_s, opts)