ood_core 0.20.0 → 0.20.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6c4dd83d1f69c0bf61d4ddc57b1b7aef23e3309e75988121c5b502dbc35f5208
4
- data.tar.gz: ec1a80f736557d1648c11b4cb3339c337d7ae9c0183117f14a74ab88dc7cc9c6
3
+ metadata.gz: 0ad31cf26a48b0b388b5c4f1bc83583515837a82c1a9419e51f724d135c4820c
4
+ data.tar.gz: 9eccd2b14920adf24f4273abd9355b4061a6a082913011757c3d636ba9d7d485
5
5
  SHA512:
6
- metadata.gz: 8df8478fb9fb591e1c69174c620895027c9fd73a4d4a87b4db9bc064b024679f65d3799a23407b9c363962aed529398596a4fdfbbd61f5f06f0a19f3188cd9be
7
- data.tar.gz: 5eab3b6b13b80fac696ce5417f5f61e05952351572a09e57ee196cdbeec043d280d491a3525ad1e53c940f6cb9ac9f58480c03071dddeb4a373f0dff4ad3d527
6
+ metadata.gz: 126c139985ca62fdfca217ee8ea2fade4292d2f8aac110d51ad94edda36aff6e8c28fbe1876981010dc2ac395eb5cebea0439add3cafbb844a023ff699b4d841
7
+ data.tar.gz: 6d17cc409aff1b7d7098b409451c93e0660a855c4b4b36f8a49afea5cc306aeff5181e76305c15b056a5234e401f613bc428a3e49d98e292c3b584aaf4394a9a
data/CHANGELOG.md CHANGED
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.20.1] - 07-21-2022
11
+
12
+ - Fixed turbovnc compatability issue with the -nohttpd flag in [767](https://github.com/OSC/ood_core/pull/767).
13
+
10
14
  ## [0.20.0] - 06-03-2022
11
15
 
12
16
  - Adapters can now respond to `cluster_info` in [752](https://github.com/OSC/ood_core/pull/752). This returns information about the cluster like how many nodes are available and so on. Only Slurm support in this release.
@@ -428,7 +432,9 @@ Functionally the same as [0.17.3] but with some CI updates.
428
432
  ### Added
429
433
  - Initial release!
430
434
 
431
- [Unreleased]: https://github.com/OSC/ood_core/compare/v0.19.0...HEAD
435
+ [Unreleased]: https://github.com/OSC/ood_core/compare/v0.20.1...HEAD
436
+ [0.20.1]: https://github.com/OSC/ood_core/compare/v0.20.0...v0.20.1
437
+ [0.20.0]: https://github.com/OSC/ood_core/compare/v0.19.0...v0.20.0
432
438
  [0.19.0]: https://github.com/OSC/ood_core/compare/v0.18.1...v0.19.0
433
439
  [0.18.1]: https://github.com/OSC/ood_core/compare/v0.18.0...v0.18.1
434
440
  [0.18.0]: https://github.com/OSC/ood_core/compare/v0.17.8...v0.18.0
@@ -86,8 +86,13 @@ module OodCore
86
86
  # Clean up any old VNC sessions that weren't cleaned before
87
87
  #{vnc_clean}
88
88
 
89
+ # for turbovnc 3.0 compatability.
90
+ if timeout 2 vncserver --help 2>&1 | grep 'nohttpd' >/dev/null 2>&1; then
91
+ HTTPD_OPT='-nohttpd'
92
+ fi
93
+
89
94
  # Attempt to start VNC server
90
- VNC_OUT=$(vncserver -log "#{vnc_log}" -rfbauth "#{vnc_passwd}" -nohttpd -noxstartup #{vnc_args} 2>&1)
95
+ VNC_OUT=$(vncserver -log "#{vnc_log}" -rfbauth "#{vnc_passwd}" $HTTPD_OPT -noxstartup #{vnc_args} 2>&1)
91
96
  VNC_PID=$(pgrep -s 0 Xvnc) # the script above will daemonize the Xvnc process
92
97
  echo "${VNC_OUT}"
93
98
 
@@ -1,4 +1,4 @@
1
1
  module OodCore
2
2
  # The current version of {OodCore}
3
- VERSION = "0.20.0"
3
+ VERSION = "0.20.1"
4
4
  end
data/ood_core.gemspec CHANGED
@@ -30,5 +30,5 @@ Gem::Specification.new do |spec|
30
30
  spec.add_development_dependency "rspec", "~> 3.0"
31
31
  spec.add_development_dependency "pry", "~> 0.10"
32
32
  spec.add_development_dependency "timecop", "~> 0.8"
33
- spec.add_development_dependency "climate_control", "~> 1.0.0"
33
+ spec.add_development_dependency "climate_control", "~> 1.1.1"
34
34
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ood_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.20.0
4
+ version: 0.20.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Eric Franz
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: exe
12
12
  cert_chain: []
13
- date: 2022-06-03 00:00:00.000000000 Z
13
+ date: 2022-07-21 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: ood_support
@@ -136,14 +136,14 @@ dependencies:
136
136
  requirements:
137
137
  - - "~>"
138
138
  - !ruby/object:Gem::Version
139
- version: 1.0.0
139
+ version: 1.1.1
140
140
  type: :development
141
141
  prerelease: false
142
142
  version_requirements: !ruby/object:Gem::Requirement
143
143
  requirements:
144
144
  - - "~>"
145
145
  - !ruby/object:Gem::Version
146
- version: 1.0.0
146
+ version: 1.1.1
147
147
  description: Open OnDemand core library that provides support for an HPC Center to
148
148
  globally define HPC services that web applications can then take advantage of.
149
149
  email: