santoku 0.0.7 → 1.0.0
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 +5 -5
- data/santoku.gemspec +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 08df6532c816c7059304ed98f442be8b0485069a
|
|
4
|
+
data.tar.gz: 6059e27e01cbcb8cb1e86660ad6e8afa5c72cca9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e4ac93108bc74be031b22866cd038a510dbf581bf969e2e351b2f63af751d0fe47ce53f22ed20bc38197ed733858adc80afad34704efb19b69a20e128823cbba
|
|
7
|
+
data.tar.gz: 7e37830db31ef60837b4d85a968b339a338503b8c8bd7d4172b8f5735281212464a92f49f7081831f7e9c050cc7ac9e06d5ef6e42b07e78b3b4e16c05722226d
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Santoku
|
|
2
2
|
=======
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
Parallel ssh commands over chef servers with rspec-like output. Santoku uses the exit codes of a command to determine whether it qualifies as a success or failure.
|
|
5
5
|
|
|
6
6
|
Installation
|
|
7
7
|
============
|
|
@@ -24,19 +24,19 @@ Usage
|
|
|
24
24
|
|
|
25
25
|
Test if a given command returns 0 on all nodes:
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
santoku -t 'test -d /foo/bar/'
|
|
28
28
|
|
|
29
29
|
Test if a given command **does not** return 0 on nodes:
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
santoku -t 'php -i | grep -i memcached' --invert
|
|
32
32
|
|
|
33
33
|
Test if a given command returns 0 on all nodes, also print out the STDOUT of successfull commands:
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
santoku -t 'cat /etc/apache2/conf.d/ssl' --print-success
|
|
36
36
|
|
|
37
37
|
Test if a given command returns 0, scoped on certain nodes (with [knife search syntax](http://docs.opscode.com/knife_search.html)):
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
santoku -t 'test -f /etc/apache2/conf.d/ssl' 'recipe:apache AND listen_ports:443'
|
|
40
40
|
|
|
41
41
|
### Note
|
|
42
42
|
|
data/santoku.gemspec
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Gem::Specification.new do |spec|
|
|
2
2
|
spec.name = 'santoku'
|
|
3
|
-
spec.version = '0.0
|
|
3
|
+
spec.version = '1.0.0'
|
|
4
4
|
spec.executables << 'santoku'
|
|
5
5
|
spec.date = '2013-11-26'
|
|
6
|
-
spec.summary = '
|
|
6
|
+
spec.summary = 'Parallel ssh commands over chef servers with rspec-like output'
|
|
7
7
|
spec.description = 'A gem to perform command over parallel ssh connections on multiple chef serverspec. Output is rspec-like.'
|
|
8
8
|
spec.authors = ['Steven De Coeyer', 'Jeroen Jacobs']
|
|
9
9
|
spec.email = 'tech@openminds.be'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: santoku
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Steven De Coeyer
|
|
@@ -125,5 +125,5 @@ rubyforge_project:
|
|
|
125
125
|
rubygems_version: 2.0.14
|
|
126
126
|
signing_key:
|
|
127
127
|
specification_version: 4
|
|
128
|
-
summary:
|
|
128
|
+
summary: Parallel ssh commands over chef servers with rspec-like output
|
|
129
129
|
test_files: []
|