bosh-gen 0.21.1 → 0.21.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/ChangeLog.md +1 -0
- data/lib/bosh/gen/generators/job_generator/templates/jobs/%job_name%_simple/monit.tt +2 -2
- data/lib/bosh/gen/generators/job_generator/templates/jobs/%job_name%_simple/templates/bin/{%job_name%_ctl.tt → ctl.tt} +0 -0
- data/lib/bosh/gen/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 220370bb8fce75c26a0efc1b700f1f06e0b3074e
|
|
4
|
+
data.tar.gz: 302b3326a5e96e42a7b8030b4d2aa257021bc173
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3743eb084477e1742a2b70e6561011ef7990a729a403fab4fa37700cd9df0213f304a8b705e8b2042b8a8c585af20302a1f0447c68c5685d4d2ddfc35a1e85e0
|
|
7
|
+
data.tar.gz: 032cea4dc24395c9518e5b5af0c7f4d7a2d547931bee166a47ef01404c11732be6ce2763610980bf1f75202381a2568a790a4fdfb2d2a0f3210bde5bd4a0d585
|
data/ChangeLog.md
CHANGED
|
@@ -8,6 +8,7 @@ v0.21.0
|
|
|
8
8
|
- `new` now creates a wrapper job `just_install_packages` that is useful for initial development of packages prior to creating new job templates with `bosh-gen job`.
|
|
9
9
|
- fixed default stemcell names to be modern `go_agent` variant [v0.21.1]
|
|
10
10
|
- default AWS instance type now m3.medium which is available to all AWS accounts [v0.21.1]
|
|
11
|
+
- `job` creates `ctl` file instead of `jobname_ctl` [v0.21.2]
|
|
11
12
|
|
|
12
13
|
v0.20.0
|
|
13
14
|
-------
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
check process <%= job_name %>
|
|
2
2
|
with pidfile /var/vcap/sys/run/<%= job_name %>/<%= job_name %>.pid
|
|
3
|
-
start program "/var/vcap/jobs/<%= job_name %>/bin/monit_debugger <%= job_name %>_ctl '/var/vcap/jobs/<%= job_name %>/bin
|
|
4
|
-
stop program "/var/vcap/jobs/<%= job_name %>/bin/monit_debugger <%= job_name %>_ctl '/var/vcap/jobs/<%= job_name %>/bin
|
|
3
|
+
start program "/var/vcap/jobs/<%= job_name %>/bin/monit_debugger <%= job_name %>_ctl '/var/vcap/jobs/<%= job_name %>/bin/ctl start'"
|
|
4
|
+
stop program "/var/vcap/jobs/<%= job_name %>/bin/monit_debugger <%= job_name %>_ctl '/var/vcap/jobs/<%= job_name %>/bin/ctl stop'"
|
|
5
5
|
group vcap
|
|
File without changes
|
data/lib/bosh/gen/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bosh-gen
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.21.
|
|
4
|
+
version: 0.21.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dr Nic Williams
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-11-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: thor
|
|
@@ -222,7 +222,7 @@ files:
|
|
|
222
222
|
- lib/bosh/gen/generators/job_generator/templates/jobs/%job_name%_nginx_rack/templates/config/nginx_proxy.conf
|
|
223
223
|
- lib/bosh/gen/generators/job_generator/templates/jobs/%job_name%_nginx_rack/templates/config/redis.yml.erb
|
|
224
224
|
- lib/bosh/gen/generators/job_generator/templates/jobs/%job_name%_simple/monit.tt
|
|
225
|
-
- lib/bosh/gen/generators/job_generator/templates/jobs/%job_name%_simple/templates/bin
|
|
225
|
+
- lib/bosh/gen/generators/job_generator/templates/jobs/%job_name%_simple/templates/bin/ctl.tt
|
|
226
226
|
- lib/bosh/gen/generators/job_generator/templates/jobs/%job_name%_simple/templates/bin/monit_debugger
|
|
227
227
|
- lib/bosh/gen/generators/job_generator/templates/jobs/%job_name%_simple/templates/config/.gitkeep
|
|
228
228
|
- lib/bosh/gen/generators/job_generator/templates/jobs/%job_name%_simple/templates/data/properties.sh.erb
|