Sha256: aac86762ca545e5f7cddc09272e9f94ec9fe65aa4796b997b32e94511ad003bc

Contents?: true

Size: 1.18 KB

Versions: 15

Compression:

Stored size: 1.18 KB

Contents

# chake

Simple host management with chef and rake. No chef server required.

## Installation

    $ gem install chake

## Usage

Require chake on your `Rakefile`:

```ruby
require 'chake'
```

Initializing the repository:

    $ rake init


Important files that are generated:

```
config.rb
nodes.yaml
config/
config/roles/
cookbooks/
cookbooks/myhost/
cookbooks/myhost/recipes/
cookbooks/myhost/recipes/default.rb

```

* `nodes.yaml`, where you will list the hosts you will be managing.
* a `cookbooks` directory where you will store your cookbooks. A sample
  cookbook called "myhost" is created, but feel free to remove it and add
  actual cookbooks.


Sample `nodes.yaml`:

```yaml
host1.mycompany.com:
    run_list:
        - recipe[common]
        - recipe[webserver]
host2.mycompany.com:
    run_list:
        - recipe[common]
        - recipe[mailserver]
```

Check the output of `rake -T` to see what else you can do.

## Contributing

1. Fork it ( http://github.com/terceiro/chake/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 new Pull Request

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
chake-0.3.1 README.md
chake-0.3 README.md
chake-0.2.3 README.md
chake-0.2.2 README.md
chake-0.2.1 README.md
chake-0.2 README.md
chake-0.1.7 README.md
chake-0.1.6 README.md
chake-0.1.5 README.md
chake-0.1.4 README.md
chake-0.1.3 README.md
chake-0.1.2 README.md
chake-0.1.1 README.md
chake-0.1.0 README.md
chake-0.0.1 README.md