All Projects → jimmycuadra → Vagrant Librarian Chef

jimmycuadra / Vagrant Librarian Chef

Licence: mit
*UNMAINTAINED* A Vagrant plugin to install Chef cookbooks using Librarian-Chef.

Programming Languages

ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to Vagrant Librarian Chef

React Axe
[DEPRECATED] Accessibility auditing for React.js applications
Stars: ✭ 1,201 (+1401.25%)
Mutual labels:  deprecated, unmaintained
jade-babel
Jade plugin for Babel
Stars: ✭ 39 (-51.25%)
Mutual labels:  deprecated, unmaintained
django-snow
ServiceNow Ticket Management App for Django based projects
Stars: ✭ 16 (-80%)
Mutual labels:  deprecated, unmaintained
Cudlr
⛔️ [DEPRECATED] Console for Unity Debugging and Logging Remotely
Stars: ✭ 167 (+108.75%)
Mutual labels:  deprecated, unmaintained
React Heatpack
A 'heatpack' command for quick React development with webpack hot reloading
Stars: ✭ 354 (+342.5%)
Mutual labels:  deprecated, unmaintained
Box
[DEPRECATED] Official, pre-packaged Vagrant Box
Stars: ✭ 197 (+146.25%)
Mutual labels:  deprecated, vagrant
cleverbot
Deprecated/unmaintained. See https://www.cleverbot.com/api/
Stars: ✭ 23 (-71.25%)
Mutual labels:  deprecated, unmaintained
passion
An object-oriented LÖVE game engine
Stars: ✭ 35 (-56.25%)
Mutual labels:  deprecated, unmaintained
Deprecated Mapbox Ios Sdk
REPLACED – use https://www.mapbox.com/ios-sdk instead
Stars: ✭ 325 (+306.25%)
Mutual labels:  deprecated, unmaintained
Vip Quickstart
Retired
Stars: ✭ 268 (+235%)
Mutual labels:  deprecated, vagrant
Tgcameraviewcontroller
Custom camera with AVFoundation. Beautiful, light and easy to integrate with iOS projects.
Stars: ✭ 1,432 (+1690%)
Mutual labels:  deprecated, unmaintained
Axe Cli
[Deprecated] A command-line interface for the aXe accessibility testing engine
Stars: ✭ 419 (+423.75%)
Mutual labels:  deprecated, unmaintained
Framework7 With Angularjs Demo App
⛔️ Unmaintained and deprecated!
Stars: ✭ 81 (+1.25%)
Mutual labels:  deprecated, unmaintained
vagrant-magento
**DEPRECATED**
Stars: ✭ 12 (-85%)
Mutual labels:  vagrant, deprecated
addon-sdk-content-scripts
DEPRECATED | Use WebExtensions instead | Add-ons demonstrating how to use content scripts in the Add-on SDK.
Stars: ✭ 23 (-71.25%)
Mutual labels:  deprecated, unmaintained
Msx
JSX for Mithril.js 0.x
Stars: ✭ 370 (+362.5%)
Mutual labels:  deprecated, unmaintained
Miniproxy
🚨⚠️ UNMAINTAINED! ⚠️🚨 A simple PHP web proxy.
Stars: ✭ 810 (+912.5%)
Mutual labels:  deprecated, unmaintained
Entware Ng
Entware-ng
Stars: ✭ 1,157 (+1346.25%)
Mutual labels:  deprecated
Splunkenizer
Ansible framework providing a fast and simple way to spin up complex Splunk environments.
Stars: ✭ 73 (-8.75%)
Mutual labels:  vagrant
Django Cache Url
DEPRECATED | Use Cache URLs in your Django Application
Stars: ✭ 68 (-15%)
Mutual labels:  deprecated

vagrant-librarian-chef

WARNING: This project is no longer maintained. You should use Berkshelf instead.

A Vagrant plugin to install Chef cookbooks using Librarian-Chef.

Requirements

  • Vagrant version 1.2.0 or greater.

Installation

vagrant plugin install vagrant-librarian-chef

Usage

Vagrant will automatically run Librarian-Chef before any provisioning step, so simply set up your Cheffile as you normally would.

You may specify the subdirectory within which to run librarian-chef using the librarian_chef.cheffile_dir config key. Please keep in mind that you will need to explicitly set the cookbooks_path in the :chef_solo provisioner:

Vagrant.configure("2") do |config|

  config.librarian_chef.cheffile_dir = "chef"

  config.vm.provision :chef_solo do |chef|
    chef.cookbooks_path = "chef/cookbooks"

    ...

  end
end

Librarian-Chef can be configured normally via configuration file at .librarian/chef/config. Again, if you change the path where cookbooks are installed by Librarian-Chef, make sure your Vagrantfile is updated to tell Vagrant's Chef provisioner where to look for them via the cookbooks_path attribute.

If you want to programmtically disable the plugin without uninstalling it, set the enabled attribute to false:

config.librarian_chef.enabled = false

Development

Vagrant 1.5.0 or greater is required.

bundle
bundle exec vagrant up

Acknowledgements

Thank you to @thegcat and other contributors for their work on vagrant-librarian, an earlier version of this functionality for Vagrant 1.0.x and the original Librarian gem with integrated Librarian-Chef.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].