hula 0.8.3 → 0.8.4
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/lib/hula/bosh_director.rb +8 -2
- data/lib/hula/version.rb +1 -1
- 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: 091abab5e241683e3363b81354c08f132419a19c
|
4
|
+
data.tar.gz: 62a63a9a44f44b06fc39caf23e31638ce9b15bf4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 68e058ff561a2d5a762bd4b5194f3b5b86e4f245d3fa14e925cbbab60f7c7e52770397d27112c051f4d26c3276639929236dd5daef268ef01edb278a31378bd6
|
7
|
+
data.tar.gz: aac1e71a25065b27510a6e1dadb9670da9c268201005845b8541a77ab2e864ae72e0247ba068c3f8e5c231cea3a014287c31eb70fc82c8519282681e20b40a7d
|
data/lib/hula/bosh_director.rb
CHANGED
@@ -55,8 +55,14 @@ module Hula
|
|
55
55
|
run_bosh(cmd.join(' '))
|
56
56
|
end
|
57
57
|
|
58
|
-
def run_errand(name, manifest_path: default_manifest_path)
|
59
|
-
|
58
|
+
def run_errand(name, manifest_path: default_manifest_path, keep_alive: false)
|
59
|
+
command = "--deployment #{manifest_path} run errand #{name}"
|
60
|
+
|
61
|
+
if keep_alive
|
62
|
+
command << " --keep-alive"
|
63
|
+
end
|
64
|
+
|
65
|
+
run_bosh(command)
|
60
66
|
end
|
61
67
|
|
62
68
|
def recreate_all(jobs)
|
data/lib/hula/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: hula
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Will Pragnell
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-03-
|
11
|
+
date: 2016-03-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|