opener-daemons 0.8.0 → 0.8.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 +8 -8
- data/lib/opener/daemons/opt_parser.rb +18 -0
- data/lib/opener/daemons/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
M2E0YjczZDFlMjBiMmQ0NjRhYzZlZmMxMDhlMWM4ZjE3NDRhODVlZA==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
Y2ZjMTFiZmYzOWJjNjhhMTM2NDkxYTEyZDEyOTZhNzk5N2Y5ODQzYw==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
YzEwNjRiMjA4ZmQwMzcwNDY3NjI0MDM0NDUwMjY0YzAyNGJlZGU3MmMwZDMx
|
|
10
|
+
M2Q4YWM4ODUzNTAxOWRmYmY2YTY4MmUxMzIyN2VlN2MwMmRjNWViNmU2MDBh
|
|
11
|
+
ZjcyZmFlYzA4MDAwNzJlNjRhNzJkODVkMWFlNmNmNmIyZDNmYWY=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
ZDBiM2UxNTRkNThiMzMwM2U4ODljNjM2ZjBjZDZlYmM1ODYwNjkyZDAwOGIw
|
|
14
|
+
MTk3NDQwYTcxYmM3OTI2NDI2M2JhYjkyYWFiYTAzOGNjODc0MTdhYmVjMjEz
|
|
15
|
+
OWNlODMwMGNjMGQ5MWQyNDYzYjRhMWNlZmZlNWZjOGVlZGIwM2Q=
|
|
@@ -66,6 +66,24 @@ module Opener
|
|
|
66
66
|
opts.separator "When calling #{script_name} without <start|stop|restart> the daemon will start as a foreground process"
|
|
67
67
|
opts.separator ""
|
|
68
68
|
|
|
69
|
+
opts.separator "Environment Variables:"
|
|
70
|
+
opts.separator ""
|
|
71
|
+
|
|
72
|
+
opts.separator "These daemons make use of Amazon SQS queues and other Amazon services."
|
|
73
|
+
opts.separator "The access to these services and other environment variables can be configured"
|
|
74
|
+
opts.separator "using a .opener-daemons-env file in the home directory of the current user."
|
|
75
|
+
opts.separator ""
|
|
76
|
+
opts.separator "It is also possible to provide the environment variables directly to the deamon."
|
|
77
|
+
opts.separator ""
|
|
78
|
+
opts.separator "For example:"
|
|
79
|
+
opts.separator "AWS_REGION='eu-west-1' #{script_name} start [other options]"
|
|
80
|
+
opts.separator ""
|
|
81
|
+
opts.separator "We advise to have the following environment variables available: "
|
|
82
|
+
opts.separator "* AWS_ACCESS_KEY_ID"
|
|
83
|
+
opts.separator "* AWS_SECRET_ACCESS_KEY"
|
|
84
|
+
opts.separator "* AWS_REGION"
|
|
85
|
+
opts.separator ""
|
|
86
|
+
|
|
69
87
|
if block_given?
|
|
70
88
|
opts.separator "Component Specific options:"
|
|
71
89
|
opts.separator ""
|