ood_core 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 +4 -4
- data/CHANGELOG.md +8 -2
- data/lib/ood_core/cluster.rb +11 -5
- data/lib/ood_core/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 19665b6db28d01da39093dc90d4a5023ca12264f07b932aebc8ec8c443bafa25
|
|
4
|
+
data.tar.gz: d9c8c6d8f30851ea9138c8325aafd750823534a51f36601a20366265ac4feec2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1ed1eaa873366ad5e825ed29c7401dd3bca4a424ab7a689a19479f297ec20d7e019cd53609006b0919a365dd0002eb0c1e9c0cabcc9f69579cf7ae81b33b3ae7
|
|
7
|
+
data.tar.gz: 90a4cfa3ee8b1f76ef7e1f28df6d8e64725d1eaff005b4bd4ff7fc8f88e5bfda8a15e706636c18e7b5ac74451071eaea4e6814945ea25e95f6c7ed2de8fd2fec
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
|
+
## [0.16.1] - 2021-04-23
|
|
10
|
+
### Fixed
|
|
11
|
+
- memorized some allow? variables to have better support around ACLS in
|
|
12
|
+
[267](https://github.com/OSC/ood_core/pull/267)
|
|
13
|
+
|
|
9
14
|
## [0.16.0] - 2021-04-20
|
|
10
15
|
### Fixed
|
|
11
16
|
- tmux 2.7+ bug in the linux host adapter in [2.5.8](https://github.com/OSC/ood_core/pull/258)
|
|
@@ -300,8 +305,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
300
305
|
### Added
|
|
301
306
|
- Initial release!
|
|
302
307
|
|
|
303
|
-
[Unreleased]: https://github.com/OSC/ood_core/compare/v0.16.
|
|
304
|
-
[0.
|
|
308
|
+
[Unreleased]: https://github.com/OSC/ood_core/compare/v0.16.1...HEAD
|
|
309
|
+
[0.16.1]: https://github.com/OSC/ood_core/compare/v0.16.0...v0.16.1
|
|
310
|
+
[0.16.0]: https://github.com/OSC/ood_core/compare/v0.15.1...v0.16.0
|
|
305
311
|
[0.15.1]: https://github.com/OSC/ood_core/compare/v0.15.0...v0.15.1
|
|
306
312
|
[0.15.0]: https://github.com/OSC/ood_core/compare/v0.14.0...v0.15.0
|
|
307
313
|
[0.14.0]: https://github.com/OSC/ood_core/compare/v0.13.0...v0.14.0
|
data/lib/ood_core/cluster.rb
CHANGED
|
@@ -78,7 +78,9 @@ module OodCore
|
|
|
78
78
|
# Whether the login feature is allowed
|
|
79
79
|
# @return [Boolean] is login allowed
|
|
80
80
|
def login_allow?
|
|
81
|
-
|
|
81
|
+
return @login_allow if defined?(@login_allow)
|
|
82
|
+
|
|
83
|
+
@login_allow = (allow? && !login_config.empty?)
|
|
82
84
|
end
|
|
83
85
|
|
|
84
86
|
# Build a job adapter from the job configuration
|
|
@@ -90,9 +92,11 @@ module OodCore
|
|
|
90
92
|
# Whether the job feature is allowed based on the ACLs
|
|
91
93
|
# @return [Boolean] is the job feature allowed
|
|
92
94
|
def job_allow?
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
95
|
+
return @job_allow if defined?(@job_allow)
|
|
96
|
+
|
|
97
|
+
@job_allow = (allow? && ! job_config.empty? && build_acls(
|
|
98
|
+
job_config.fetch(:acls, []).map(&:to_h)
|
|
99
|
+
).all?(&:allow?))
|
|
96
100
|
end
|
|
97
101
|
|
|
98
102
|
# The batch connect template configuration used for this cluster
|
|
@@ -138,7 +142,9 @@ module OodCore
|
|
|
138
142
|
# Whether this cluster is allowed to be used
|
|
139
143
|
# @return [Boolean] whether cluster is allowed
|
|
140
144
|
def allow?
|
|
141
|
-
|
|
145
|
+
return @allow if defined?(@allow)
|
|
146
|
+
|
|
147
|
+
@allow = acls.all?(&:allow?)
|
|
142
148
|
end
|
|
143
149
|
|
|
144
150
|
# The comparison operator
|
data/lib/ood_core/version.rb
CHANGED
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.16.
|
|
4
|
+
version: 0.16.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: 2021-04-
|
|
13
|
+
date: 2021-04-23 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: ood_support
|