summaryrefslogtreecommitdiff
path: root/dev-repo/README.md
blob: 84fe5f77df37318833132e3fc34e93fa21554283 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Chef Developer Repo

This repository contains some basic cookbooks to test chef while you're hacking away. You can provision a VM using the kitchen configuration and run these tests like below:

```
$ kitchen converge chef-ubuntu-1210
$ kitchen login chef-ubuntu-1210
$ export PATH=/opt/chef/bin:/opt/chef/embedded/bin:$PATH
$ cd ~/chef
$ bundle install
$ bundle exec chef-client -z -o "recipe[audit_test::default]" -c dev-repo/dev-config.rb

```