Skip to content

Instantly share code, notes, and snippets.

@filler
Created March 8, 2011 23:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save filler/861346 to your computer and use it in GitHub Desktop.
Save filler/861346 to your computer and use it in GitHub Desktop.
rdj:~ silkey$ sudo gem list | grep -E 'vagrant|veewee'
vagrant (0.7.2)
rdj:~ silkey$ vagrant
Tasks:
vagrant box # Commands to manage system boxes
vagrant destroy # Destroy the environment, deleting the created virtual machines
vagrant halt # Halt the running VMs in the environment
vagrant help [TASK] # Describe available tasks or one specific task
vagrant init [box_name] [box_url] # Initializes the current folder for Vagrant usage
vagrant package # Package a Vagrant environment for distribution
vagrant provision # Rerun the provisioning scripts on a running VM
vagrant reload # Reload the environment, halting it then restarting it.
vagrant resume # Resume a suspended Vagrant environment.
vagrant ssh # SSH into the currently running Vagrant environment.
vagrant ssh_config # outputs .ssh/config valid syntax for connecting to this environment via ssh
vagrant status # Shows the status of the current Vagrant environment.
vagrant suspend # Suspend a running Vagrant environment.
vagrant up # Creates the Vagrant environment
vagrant version # Prints the Vagrant version information
rdj:~ silkey$ sudo gem install veewee
Fetching: veewee-0.1.12.gem (100%)
Successfully installed veewee-0.1.12
1 gem installed
Installing ri documentation for veewee-0.1.12...
Installing RDoc documentation for veewee-0.1.12...
rdj:~ silkey$ sudo gem list | grep -E 'vagrant|veewee'
vagrant (0.7.2)
veewee (0.1.12)
rdj:~ silkey$ vagrant basebox templates
/Library/Ruby/Site/1.8/rubygems/custom_require.rb:53:in `gem_original_require': no such file to load -- veewee (LoadError)
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:53:in `require'
from /Library/Ruby/Gems/1.8/gems/veewee-0.1.12/lib/vagrant_init.rb:1
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/lib/vagrant/plugin.rb:54:in `load'
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/lib/vagrant/plugin.rb:54:in `initialize'
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/lib/vagrant/plugin.rb:36:in `new'
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/lib/vagrant/plugin.rb:36:in `load!'
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/lib/vagrant/plugin.rb:32:in `each'
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/lib/vagrant/plugin.rb:32:in `load!'
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/lib/vagrant/plugin.rb:31:in `each'
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/lib/vagrant/plugin.rb:31:in `load!'
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/lib/vagrant.rb:42
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:49:in `gem_original_require'
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:49:in `require'
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/bin/vagrant:2
from /usr/bin/vagrant:19:in `load'
from /usr/bin/vagrant:19
rdj:~ silkey$ vagrant
/Library/Ruby/Site/1.8/rubygems/custom_require.rb:53:in `gem_original_require': no such file to load -- veewee (LoadError)
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:53:in `require'
from /Library/Ruby/Gems/1.8/gems/veewee-0.1.12/lib/vagrant_init.rb:1
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/lib/vagrant/plugin.rb:54:in `load'
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/lib/vagrant/plugin.rb:54:in `initialize'
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/lib/vagrant/plugin.rb:36:in `new'
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/lib/vagrant/plugin.rb:36:in `load!'
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/lib/vagrant/plugin.rb:32:in `each'
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/lib/vagrant/plugin.rb:32:in `load!'
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/lib/vagrant/plugin.rb:31:in `each'
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/lib/vagrant/plugin.rb:31:in `load!'
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/lib/vagrant.rb:42
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:49:in `gem_original_require'
from /Library/Ruby/Site/1.8/rubygems/custom_require.rb:49:in `require'
from /Library/Ruby/Gems/1.8/gems/vagrant-0.7.2/bin/vagrant:2
from /usr/bin/vagrant:19:in `load'
from /usr/bin/vagrant:19
rdj:~ silkey$ sudo gem uninstall veewee
Remove executables:
veewee
in addition to the gem? [Yn] y
Removing veewee
Successfully uninstalled veewee-0.1.12
rdj:~ silkey$ sudo gem list | grep -E 'vagrant|veewee'
vagrant (0.7.2)
rdj:~ silkey$ vagrant
Tasks:
vagrant box # Commands to manage system boxes
vagrant destroy # Destroy the environment, deleting the created virtual machines
vagrant halt # Halt the running VMs in the environment
vagrant help [TASK] # Describe available tasks or one specific task
vagrant init [box_name] [box_url] # Initializes the current folder for Vagrant usage
vagrant package # Package a Vagrant environment for distribution
vagrant provision # Rerun the provisioning scripts on a running VM
vagrant reload # Reload the environment, halting it then restarting it.
vagrant resume # Resume a suspended Vagrant environment.
vagrant ssh # SSH into the currently running Vagrant environment.
vagrant ssh_config # outputs .ssh/config valid syntax for connecting to this environment via ssh
vagrant status # Shows the status of the current Vagrant environment.
vagrant suspend # Suspend a running Vagrant environment.
vagrant up # Creates the Vagrant environment
vagrant version # Prints the Vagrant version information
rdj:~ silkey$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment