conjur-cli 5.1.1 → 5.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.dockerignore +0 -1
- data/CHANGELOG.md +4 -0
- data/acceptance-features/dsl/policy_owner.feature +3 -3
- data/acceptance-features/dsl/resource_owner.feature +1 -1
- data/acceptance-features/dsl/retire.feature +2 -2
- data/lib/conjur/command/plugin.rb +1 -1
- data/lib/conjur/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bb5d58e501794d2bdde119a07dd60ec123833b46
|
4
|
+
data.tar.gz: 73f64423dccb08d198b33d9446981c974a5b5806
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a4166b496d0a570e9864417466478c3ea13b05633462350c98a28e6f0ae5fca110791abf682237fb0c328acc7921b4d5f5b0db6a95fbfa36eb2b1263c65f2b0f
|
7
|
+
data.tar.gz: 4d440e3b0feb5a8a6ab65cd5efc5b1d414ab6a58b8e6eb9f5777d97998ae91dfeb5bc10dbd7540a96ec10e4884d5b52dafb15886bab326839399506e459633b5
|
data/.dockerignore
CHANGED
data/CHANGELOG.md
CHANGED
@@ -11,7 +11,7 @@ end
|
|
11
11
|
And I reset the command list
|
12
12
|
|
13
13
|
Scenario: --as-group works
|
14
|
-
When I run `conjur
|
14
|
+
When I run `conjur rubydsl load --as-group $ns/admin --collection $ns` interactively
|
15
15
|
And I pipe in the file "policy.rb"
|
16
16
|
And the command completes successfully
|
17
17
|
And I reset the command list
|
@@ -24,7 +24,7 @@ end
|
|
24
24
|
"""
|
25
25
|
|
26
26
|
Scenario: --as-role works
|
27
|
-
When I run `conjur
|
27
|
+
When I run `conjur rubydsl load --as-role group:$ns/admin --collection $ns` interactively
|
28
28
|
And I pipe in the file "policy.rb"
|
29
29
|
And the command completes successfully
|
30
30
|
And I reset the command list
|
@@ -37,7 +37,7 @@ end
|
|
37
37
|
"""
|
38
38
|
|
39
39
|
Scenario: --as-group doesn't interfere with policy ownership of other resources
|
40
|
-
When I run `conjur
|
40
|
+
When I run `conjur rubydsl load --as-group $ns/admin --collection $ns` interactively
|
41
41
|
And I pipe in the file "policy.rb"
|
42
42
|
And the command completes successfully
|
43
43
|
And I reset the command list
|
@@ -9,7 +9,7 @@ end
|
|
9
9
|
"""
|
10
10
|
|
11
11
|
Scenario: resource is create with correct ownership
|
12
|
-
When I run `conjur
|
12
|
+
When I run `conjur rubydsl load --collection $ns` interactively
|
13
13
|
And I pipe in the file "policy.rb"
|
14
14
|
And the command completes successfully
|
15
15
|
And I reset the command list
|
@@ -5,11 +5,11 @@ Feature: Retire a policy
|
|
5
5
|
policy 'test-policy-1.0' do
|
6
6
|
end
|
7
7
|
"""
|
8
|
-
And I run `conjur
|
8
|
+
And I run `conjur rubydsl load --as-role user:admin@$ns --collection $ns` interactively
|
9
9
|
And I pipe in the file "policy.rb"
|
10
10
|
And the exit status should be 0
|
11
11
|
|
12
12
|
@wip
|
13
13
|
Scenario: Basic retirement
|
14
|
-
Then I successfully run `conjur
|
14
|
+
Then I successfully run `conjur rubydsl retire -d user:attic@$ns $ns/test-policy-1.0`
|
15
15
|
|
@@ -134,6 +134,6 @@ def modify_plugin_list(op, plugin_name)
|
|
134
134
|
|
135
135
|
File.write(f, YAML.dump(config))
|
136
136
|
end
|
137
|
-
exit_now! 'No Conjur config file found for plugin installation' unless config_found
|
138
137
|
end
|
138
|
+
exit_now! 'No Conjur config file found for plugin installation' unless config_found
|
139
139
|
end
|
data/lib/conjur/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: conjur-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.1.
|
4
|
+
version: 5.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rafal Rzepecki
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-
|
12
|
+
date: 2016-04-20 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|