bosh-gen 0.16.0 → 0.16.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9ff840094fc8c4f6c7163f742b464942e246ef75
4
- data.tar.gz: 525d03abe064affe81ae35d0a88ebeb99ec3ebad
3
+ metadata.gz: ea16e8b0470845cd60d2eadb321ad7bedb442d6a
4
+ data.tar.gz: eee570b247ef39ee7ce38d6ed8e2537ade6dff09
5
5
  SHA512:
6
- metadata.gz: 0cdcd0d98950bd188e01c025836ef211bf829f121c048f07ce43102a9b0775e0b8d523f48837fd5170006b58a1ac4951c1168ce7c54432f484a98bb5f9c9ab14
7
- data.tar.gz: 8ea4f400fb757e263b14f92b2a189265c15b7db073a7dae43f1d1d20bd0c0c4e8a298db6c1b562c72dd9d97c2fe3e19bc711ed3a057d0c1f5c155ef083b5783c
6
+ metadata.gz: 318909a48397e0dc6c423b5d7f4b40aa8520eab59e501d81669a71c3acca5b16783a0252b5c9dc9f684cfa5b2cc5fdda9f79be622e843808b1f15cdc755c8c55
7
+ data.tar.gz: ad91f2f4db970db30586f6f9b18654a3ddd9a295260110c7ddb6e89c6d823b788b069f8690c6ace6a6a532ae074eecc57aa9734ebbc027df2870f58be5588fbe
data/ChangeLog.md CHANGED
@@ -3,6 +3,8 @@
3
3
  ## v0.16.0
4
4
 
5
5
  * `new` creates an initial job of the same name.
6
+ * default to running job process as vcap:vcap [v0.16.1]
7
+ * Default $INCLUDE_PATH & $LD_LIBRARY_PATH to '' if not set [v0.16.1]
6
8
 
7
9
  The initial job is configured to have the xyz.leader_address property, and an example conf file that shows how to use it.
8
10
 
@@ -15,7 +15,7 @@ case $1 in
15
15
  pid_guard $PIDFILE $JOB_NAME
16
16
 
17
17
  # TODO: Run some process
18
- exec TODO \
18
+ exec chpst -u vcap:vcap TODO \
19
19
  >>$LOG_DIR/$JOB_NAME.stdout.log \
20
20
  2>>$LOG_DIR/$JOB_NAME.stderr.log
21
21
 
@@ -15,7 +15,7 @@ case $1 in
15
15
  pid_guard $PIDFILE $JOB_NAME
16
16
 
17
17
  # TODO: Run some process
18
- exec TODO \
18
+ exec chpst -u vcap:vcap TODO \
19
19
  >>$LOG_DIR/$JOB_NAME.stdout.log \
20
20
  2>>$LOG_DIR/$JOB_NAME.stderr.log
21
21
 
@@ -1,5 +1,5 @@
1
1
  export PATH="/var/vcap/packages/<%= name %>/apt/usr/bin:$PATH"
2
- export LD_LIBRARY_PATH="/var/vcap/packages/<%= name %>/apt/usr/lib:$LD_LIBRARY_PATH"
3
- export INCLUDE_PATH="/var/vcap/packages/<%= name %>/apt/usr/include:$INCLUDE_PATH"
2
+ export LD_LIBRARY_PATH="/var/vcap/packages/<%= name %>/apt/usr/lib:${LD_LIBRARY_PATH:-}"
3
+ export INCLUDE_PATH="/var/vcap/packages/<%= name %>/apt/usr/include:${INCLUDE_PATH:-}"
4
4
  export CPATH="$INCLUDE_PATH"
5
5
  export CPPPATH="$INCLUDE_PATH"
@@ -1,5 +1,5 @@
1
1
  module Bosh
2
2
  module Gen
3
- VERSION = "0.16.0"
3
+ VERSION = "0.16.1"
4
4
  end
5
5
  end
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.16.0
4
+ version: 0.16.1
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: 2014-02-06 00:00:00.000000000 Z
11
+ date: 2014-02-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor