ansible_utils 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +8 -2
- data/lib/ansible_utils/templates/new/roles/common/default/main.yml +5 -0
- data/lib/ansible_utils/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ee8d75c1c5039a5a5229cd221f50fcf54dcc9e5
|
|
4
|
+
data.tar.gz: dcc675f4b0a09dfbdb80e74863e3a729c2f556ca
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f8be390b94266d6557b469305b20d1f587c86306778e12d7fe3bceb9a08a989d4befb21e0bc1825fa6df32b4274ea2491e4e245d58440426bddcb565743b1bd8
|
|
7
|
+
data.tar.gz: 225fb15788e977c41d68c5ba376d9206190de1c0c538a5b9548d21c6412e56340922f20d9aae78962e69d2cf8122f57f47b21b4b9040fb74b384b6d62ef68794
|
data/README.md
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
# Ansible Utils
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
__Scaffold generator for ansible playbooks__
|
|
4
|
+
|
|
5
|
+
I am using this project to learn ansible so if this project seems very incomplete and at times confusing, it's because it is.
|
|
6
|
+
|
|
7
|
+
The inspiration is from the cookbook functionality of chef's knife tool.
|
|
8
|
+
|
|
9
|
+
This is not by any means meant to replace ansible's fantastic `ansible-playbook` tool
|
|
4
10
|
|
|
5
11
|
## Installation
|
|
6
12
|
|
|
7
|
-
Install >=
|
|
13
|
+
Install ruby >= v1.9.2
|
|
8
14
|
|
|
9
15
|
$ gem install ansible_utils
|
|
10
16
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ansible_utils
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Aaron Cruz
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-09-
|
|
11
|
+
date: 2013-09-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -80,6 +80,7 @@ files:
|
|
|
80
80
|
- lib/ansible_utils/templates/new/roles/app/tasks/main.yml
|
|
81
81
|
- lib/ansible_utils/templates/new/roles/app/templates/noop.conf.j2
|
|
82
82
|
- lib/ansible_utils/templates/new/roles/app/vars/main.yml
|
|
83
|
+
- lib/ansible_utils/templates/new/roles/common/default/main.yml
|
|
83
84
|
- lib/ansible_utils/templates/new/roles/common/files/bar.txt
|
|
84
85
|
- lib/ansible_utils/templates/new/roles/common/handlers/main.yml
|
|
85
86
|
- lib/ansible_utils/templates/new/roles/common/tasks/main.yml
|