No commit activity in last 3 years
No release in over 3 years
Vagrant plugin for Serverkit.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0

Runtime

 Project Readme

vagrant-serverkit (Mock)

Gem Version

vagrant-serverkit is a vagrant plugin for Serverkit. This plugin dependents on serverkit v0.2.3.

Installation

NOTE: This plugin is nothing but a mock. Reserve vagrant-serverkit namespace for serverkit's official plugin.

$ vagrant plugin install vagrant-serverkit-mock

Usage

Set up ~/.ssh/config:

$ vagrant up --no-provision
$ vagrant ssh-config --host host_name >> ~/.ssh/config

Configure Vagrantfile:

Vagrant.configure(2) do |config|
  config.vm.provision :serverkit do |config|
    # Host name set in ~/.ssh/confg
    config.host = 'host_name'

    # Path to the recipe file
    config.recipe = 'recipe.yml'

    # Path to the variables file (Optional)
    config.variables = 'variables.yml'
  end
end

Run:

$ vagrant provision

Contributing

  1. Fork it ( https://github.com/kami-zh/vagrant-serverkit/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request