https://github.com/schickling/playbook
Ansible playbook manager - The simple way to install playbooks.
https://github.com/schickling/playbook
Last synced: over 1 year ago
JSON representation
Ansible playbook manager - The simple way to install playbooks.
- Host: GitHub
- URL: https://github.com/schickling/playbook
- Owner: schickling
- Created: 2013-12-10T15:58:16.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2013-12-21T22:20:56.000Z (over 12 years ago)
- Last Synced: 2025-03-07T10:37:17.472Z (over 1 year ago)
- Language: Ruby
- Size: 207 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
playbook [](https://travis-ci.org/schickling/playbook)
========
[Ansible](www.ansibleworks.com) playbook manager - The **fast and easy** way to install playbooks.
## Features
* Use existing playbooks and configure them to your need
* No more copy & paste
* Easy to maintain
## Installation
```sh
$ gem install playbook
```
## Usage
A simple usage example can be found [here](https://github.com/schickling/playbook-example).
#### 1. Create your playbook file
```sh
$ playbook init
```
#### 2. Specify your playbooks in `playbooks.yml`
```yml
- schickling/nginx-playbook
- schickling/php54-playbook
```
#### 3. Install the playbooks
```sh
$ playbook install
```
#### 4. Load the playbooks
```yml
---
- hosts: all
tasks:
- include: playbooks/schickling/nginx-playbook/nginx.yml
- include: playbooks/schickling/php54-playbook/php54.yml
```
## Write and publish your own playbook
*TODO*
## Coming soon...
* Version support
* Templateing (vhosts, ...)
* Hosts
* Dependencies
* Ordered Dependencies