clusterlb 0.1.6 → 0.1.7

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.
Files changed (75) hide show
  1. checksums.yaml +4 -4
  2. data/.ruby-version +1 -0
  3. data/Gemfile.lock +761 -1
  4. data/build.sh +4 -0
  5. data/clusterlb.gemspec +3 -0
  6. data/exe/clusterlb-stectrl +3 -2
  7. data/lib/clusterlb/version.rb +1 -1
  8. data/lib/clusterlb.rb +108 -5
  9. data/omnibus/.gitignore +10 -0
  10. data/omnibus/.kitchen.yml +41 -0
  11. data/omnibus/.ruby-version +1 -0
  12. data/omnibus/Berksfile +12 -0
  13. data/omnibus/Gemfile +21 -0
  14. data/omnibus/Gemfile.lock +284 -0
  15. data/omnibus/README.md +120 -0
  16. data/omnibus/build.sh +3 -0
  17. data/omnibus/config/patches/eventmachine/disable-extensions.patch +11 -0
  18. data/omnibus/config/patches/libffi/libffi-3.2.1-disable-multi-os-directory.patch +83 -0
  19. data/omnibus/config/patches/libffi/libffi-3.2.1-makefiles-sparc.patch +24 -0
  20. data/omnibus/config/patches/libiconv/config.guess_2015-09-14.patch +2390 -0
  21. data/omnibus/config/patches/libiconv/libiconv-1.14_srclib_stdio.in.h-remove-gets-declarations.patch +29 -0
  22. data/omnibus/config/patches/libyaml/v0.1.6.windows-configure.patch +26 -0
  23. data/omnibus/config/patches/ncurses/config_guess_2015-09-24.patch +857 -0
  24. data/omnibus/config/patches/ncurses/ncurses-5.9-gcc-5.patch +46 -0
  25. data/omnibus/config/patches/openssl/openssl-1.0.1f-do-not-build-docs.patch +28 -0
  26. data/omnibus/config/patches/openssl/openssl-1.0.1q-fix-compiler-flags-table-for-msys.patch +20 -0
  27. data/omnibus/config/patches/openssl/openssl-1.0.2k-no-bang.patch +17 -0
  28. data/omnibus/config/patches/openssl/solaris-do-not-define-xopen-source.patch +24 -0
  29. data/omnibus/config/patches/pkg-config-lite/pkg-config-lite-0.28-1.config.guess.patch +992 -0
  30. data/omnibus/config/patches/ruby/ruby-2_1_3-no-mkmf.patch +22 -0
  31. data/omnibus/config/patches/ruby/ruby-aix-atomic.patch +11 -0
  32. data/omnibus/config/patches/ruby/ruby-aix-configure-all-source.patch +11 -0
  33. data/omnibus/config/patches/ruby/ruby-aix-configure-use-bash.patch +8 -0
  34. data/omnibus/config/patches/ruby/ruby-aix-configure.patch +20 -0
  35. data/omnibus/config/patches/ruby/ruby-aix-vm-core.patch +14 -0
  36. data/omnibus/config/patches/ruby/ruby-mkmf.patch +29 -0
  37. data/omnibus/config/patches/ruby/ruby-no-m32-cflag.patch +38 -0
  38. data/omnibus/config/patches/ruby/ruby-no-stack-protector.patch +13 -0
  39. data/omnibus/config/patches/ruby/ruby-remove-headc.patch +10 -0
  40. data/omnibus/config/patches/ruby/ruby-solaris-linux-socket-compat.patch +42 -0
  41. data/omnibus/config/patches/ruby/ruby-take-windres-rcflags.patch +11 -0
  42. data/omnibus/config/patches/ruby/ruby_aix_2_1_3_ssl_EAGAIN.patch +19 -0
  43. data/omnibus/config/patches/ruby/ruby_aix_openssl.patch +10 -0
  44. data/omnibus/config/patches/ruby/ruby_nano.patch +68 -0
  45. data/omnibus/config/patches/zlib/zlib-windows-relocate.patch +20 -0
  46. data/omnibus/config/projects/clusterlb.rb +38 -0
  47. data/omnibus/config/software/acme.sh.rb +18 -0
  48. data/omnibus/config/software/cacerts.rb +89 -0
  49. data/omnibus/config/software/clusterlb-gem.rb +25 -0
  50. data/omnibus/config/software/clusterlb-zlib.rb +55 -0
  51. data/omnibus/config/software/config_guess.rb +36 -0
  52. data/omnibus/config/software/libffi.rb +70 -0
  53. data/omnibus/config/software/libiconv.rb +62 -0
  54. data/omnibus/config/software/libtool.rb +55 -0
  55. data/omnibus/config/software/libyaml.rb +46 -0
  56. data/omnibus/config/software/makedepend.rb +43 -0
  57. data/omnibus/config/software/ncurses.rb +154 -0
  58. data/omnibus/config/software/oggcert-gem.rb +24 -0
  59. data/omnibus/config/software/openssl.rb +166 -0
  60. data/omnibus/config/software/pkg-config-lite.rb +45 -0
  61. data/omnibus/config/software/preparation.rb +30 -0
  62. data/omnibus/config/software/ruby.rb +238 -0
  63. data/omnibus/config/software/rubygems.rb +89 -0
  64. data/omnibus/config/software/util-macros.rb +43 -0
  65. data/omnibus/config/software/xproto.rb +43 -0
  66. data/omnibus/config/software/zlib.rb +84 -0
  67. data/omnibus/omnibus.rb +54 -0
  68. data/omnibus/package-scripts/clusterlb/postinst +17 -0
  69. data/omnibus/package-scripts/clusterlb/postrm +9 -0
  70. data/omnibus/package-scripts/clusterlb/preinst +7 -0
  71. data/omnibus/package-scripts/clusterlb/prerm +15 -0
  72. data/omnibus/resources/clusterlb/deb/conffiles.erb +3 -0
  73. data/omnibus/resources/clusterlb/deb/control.erb +25 -0
  74. data/omnibus/resources/clusterlb/deb/md5sums.erb +3 -0
  75. metadata +124 -2
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clusterlb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dr. Ogg
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-06-24 00:00:00.000000000 Z
11
+ date: 2019-07-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -100,6 +100,60 @@ dependencies:
100
100
  - - "~>"
101
101
  - !ruby/object:Gem::Version
102
102
  version: '2.2'
103
+ - !ruby/object:Gem::Dependency
104
+ name: inifile
105
+ requirement: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - ">="
108
+ - !ruby/object:Gem::Version
109
+ version: 3.0.0
110
+ - - "~>"
111
+ - !ruby/object:Gem::Version
112
+ version: '3.0'
113
+ type: :runtime
114
+ prerelease: false
115
+ version_requirements: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - ">="
118
+ - !ruby/object:Gem::Version
119
+ version: 3.0.0
120
+ - - "~>"
121
+ - !ruby/object:Gem::Version
122
+ version: '3.0'
123
+ - !ruby/object:Gem::Dependency
124
+ name: aws-sdk
125
+ requirement: !ruby/object:Gem::Requirement
126
+ requirements:
127
+ - - "~>"
128
+ - !ruby/object:Gem::Version
129
+ version: '3.0'
130
+ - - ">="
131
+ - !ruby/object:Gem::Version
132
+ version: 3.0.1
133
+ type: :runtime
134
+ prerelease: false
135
+ version_requirements: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - "~>"
138
+ - !ruby/object:Gem::Version
139
+ version: '3.0'
140
+ - - ">="
141
+ - !ruby/object:Gem::Version
142
+ version: 3.0.1
143
+ - !ruby/object:Gem::Dependency
144
+ name: net-ssh
145
+ requirement: !ruby/object:Gem::Requirement
146
+ requirements:
147
+ - - "~>"
148
+ - !ruby/object:Gem::Version
149
+ version: '5.2'
150
+ type: :runtime
151
+ prerelease: false
152
+ version_requirements: !ruby/object:Gem::Requirement
153
+ requirements:
154
+ - - "~>"
155
+ - !ruby/object:Gem::Version
156
+ version: '5.2'
103
157
  description: Simple tools to manage a group of nginx lb's with shared nfs configs
104
158
  email:
105
159
  - ogg@sr375.com
@@ -109,6 +163,7 @@ extensions: []
109
163
  extra_rdoc_files: []
110
164
  files:
111
165
  - ".gitignore"
166
+ - ".ruby-version"
112
167
  - Gemfile
113
168
  - Gemfile.lock
114
169
  - LICENSE.txt
@@ -116,10 +171,77 @@ files:
116
171
  - Rakefile
117
172
  - bin/console
118
173
  - bin/setup
174
+ - build.sh
119
175
  - clusterlb.gemspec
120
176
  - exe/clusterlb-stectrl
121
177
  - lib/clusterlb.rb
122
178
  - lib/clusterlb/version.rb
179
+ - omnibus/.gitignore
180
+ - omnibus/.kitchen.yml
181
+ - omnibus/.ruby-version
182
+ - omnibus/Berksfile
183
+ - omnibus/Gemfile
184
+ - omnibus/Gemfile.lock
185
+ - omnibus/README.md
186
+ - omnibus/build.sh
187
+ - omnibus/config/patches/eventmachine/disable-extensions.patch
188
+ - omnibus/config/patches/libffi/libffi-3.2.1-disable-multi-os-directory.patch
189
+ - omnibus/config/patches/libffi/libffi-3.2.1-makefiles-sparc.patch
190
+ - omnibus/config/patches/libiconv/config.guess_2015-09-14.patch
191
+ - omnibus/config/patches/libiconv/libiconv-1.14_srclib_stdio.in.h-remove-gets-declarations.patch
192
+ - omnibus/config/patches/libyaml/v0.1.6.windows-configure.patch
193
+ - omnibus/config/patches/ncurses/config_guess_2015-09-24.patch
194
+ - omnibus/config/patches/ncurses/ncurses-5.9-gcc-5.patch
195
+ - omnibus/config/patches/openssl/openssl-1.0.1f-do-not-build-docs.patch
196
+ - omnibus/config/patches/openssl/openssl-1.0.1q-fix-compiler-flags-table-for-msys.patch
197
+ - omnibus/config/patches/openssl/openssl-1.0.2k-no-bang.patch
198
+ - omnibus/config/patches/openssl/solaris-do-not-define-xopen-source.patch
199
+ - omnibus/config/patches/pkg-config-lite/pkg-config-lite-0.28-1.config.guess.patch
200
+ - omnibus/config/patches/ruby/ruby-2_1_3-no-mkmf.patch
201
+ - omnibus/config/patches/ruby/ruby-aix-atomic.patch
202
+ - omnibus/config/patches/ruby/ruby-aix-configure-all-source.patch
203
+ - omnibus/config/patches/ruby/ruby-aix-configure-use-bash.patch
204
+ - omnibus/config/patches/ruby/ruby-aix-configure.patch
205
+ - omnibus/config/patches/ruby/ruby-aix-vm-core.patch
206
+ - omnibus/config/patches/ruby/ruby-mkmf.patch
207
+ - omnibus/config/patches/ruby/ruby-no-m32-cflag.patch
208
+ - omnibus/config/patches/ruby/ruby-no-stack-protector.patch
209
+ - omnibus/config/patches/ruby/ruby-remove-headc.patch
210
+ - omnibus/config/patches/ruby/ruby-solaris-linux-socket-compat.patch
211
+ - omnibus/config/patches/ruby/ruby-take-windres-rcflags.patch
212
+ - omnibus/config/patches/ruby/ruby_aix_2_1_3_ssl_EAGAIN.patch
213
+ - omnibus/config/patches/ruby/ruby_aix_openssl.patch
214
+ - omnibus/config/patches/ruby/ruby_nano.patch
215
+ - omnibus/config/patches/zlib/zlib-windows-relocate.patch
216
+ - omnibus/config/projects/clusterlb.rb
217
+ - omnibus/config/software/acme.sh.rb
218
+ - omnibus/config/software/cacerts.rb
219
+ - omnibus/config/software/clusterlb-gem.rb
220
+ - omnibus/config/software/clusterlb-zlib.rb
221
+ - omnibus/config/software/config_guess.rb
222
+ - omnibus/config/software/libffi.rb
223
+ - omnibus/config/software/libiconv.rb
224
+ - omnibus/config/software/libtool.rb
225
+ - omnibus/config/software/libyaml.rb
226
+ - omnibus/config/software/makedepend.rb
227
+ - omnibus/config/software/ncurses.rb
228
+ - omnibus/config/software/oggcert-gem.rb
229
+ - omnibus/config/software/openssl.rb
230
+ - omnibus/config/software/pkg-config-lite.rb
231
+ - omnibus/config/software/preparation.rb
232
+ - omnibus/config/software/ruby.rb
233
+ - omnibus/config/software/rubygems.rb
234
+ - omnibus/config/software/util-macros.rb
235
+ - omnibus/config/software/xproto.rb
236
+ - omnibus/config/software/zlib.rb
237
+ - omnibus/omnibus.rb
238
+ - omnibus/package-scripts/clusterlb/postinst
239
+ - omnibus/package-scripts/clusterlb/postrm
240
+ - omnibus/package-scripts/clusterlb/preinst
241
+ - omnibus/package-scripts/clusterlb/prerm
242
+ - omnibus/resources/clusterlb/deb/conffiles.erb
243
+ - omnibus/resources/clusterlb/deb/control.erb
244
+ - omnibus/resources/clusterlb/deb/md5sums.erb
123
245
  homepage:
124
246
  licenses:
125
247
  - MIT