natives 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (50) hide show
  1. checksums.yaml +15 -0
  2. data/.document +5 -0
  3. data/.rspec +1 -0
  4. data/Gemfile +17 -0
  5. data/Gemfile.lock +137 -0
  6. data/LICENSE.txt +20 -0
  7. data/README.rdoc +19 -0
  8. data/Rakefile +42 -0
  9. data/VERSION +1 -0
  10. data/bin/natives +7 -0
  11. data/chef-solo/.gitignore +17 -0
  12. data/chef-solo/.kitchen.yml +27 -0
  13. data/chef-solo/Berksfile +4 -0
  14. data/chef-solo/config.rb +17 -0
  15. data/chef-solo/vendored-cookbooks/apt/CHANGELOG.md +144 -0
  16. data/chef-solo/vendored-cookbooks/apt/README.md +247 -0
  17. data/chef-solo/vendored-cookbooks/apt/attributes/default.rb +27 -0
  18. data/chef-solo/vendored-cookbooks/apt/files/default/apt-proxy-v2.conf +50 -0
  19. data/chef-solo/vendored-cookbooks/apt/libraries/helpers.rb +47 -0
  20. data/chef-solo/vendored-cookbooks/apt/libraries/network.rb +33 -0
  21. data/chef-solo/vendored-cookbooks/apt/metadata.json +54 -0
  22. data/chef-solo/vendored-cookbooks/apt/metadata.rb +34 -0
  23. data/chef-solo/vendored-cookbooks/apt/providers/preference.rb +61 -0
  24. data/chef-solo/vendored-cookbooks/apt/providers/repository.rb +141 -0
  25. data/chef-solo/vendored-cookbooks/apt/recipes/cacher-client.rb +81 -0
  26. data/chef-solo/vendored-cookbooks/apt/recipes/cacher-ng.rb +43 -0
  27. data/chef-solo/vendored-cookbooks/apt/recipes/default.rb +83 -0
  28. data/chef-solo/vendored-cookbooks/apt/resources/preference.rb +30 -0
  29. data/chef-solo/vendored-cookbooks/apt/resources/repository.rb +41 -0
  30. data/chef-solo/vendored-cookbooks/apt/templates/debian-6.0/acng.conf.erb +173 -0
  31. data/chef-solo/vendored-cookbooks/apt/templates/default/01proxy.erb +5 -0
  32. data/chef-solo/vendored-cookbooks/apt/templates/default/acng.conf.erb +275 -0
  33. data/chef-solo/vendored-cookbooks/apt/templates/ubuntu-10.04/acng.conf.erb +269 -0
  34. data/chef-solo/vendored-cookbooks/homebrew/CHANGELOG.md +36 -0
  35. data/chef-solo/vendored-cookbooks/homebrew/README.md +110 -0
  36. data/chef-solo/vendored-cookbooks/homebrew/attributes/default.rb +22 -0
  37. data/chef-solo/vendored-cookbooks/homebrew/libraries/homebrew_mixin.rb +53 -0
  38. data/chef-solo/vendored-cookbooks/homebrew/libraries/homebrew_package.rb +104 -0
  39. data/chef-solo/vendored-cookbooks/homebrew/metadata.json +32 -0
  40. data/chef-solo/vendored-cookbooks/homebrew/metadata.rb +10 -0
  41. data/chef-solo/vendored-cookbooks/homebrew/providers/tap.rb +48 -0
  42. data/chef-solo/vendored-cookbooks/homebrew/recipes/default.rb +46 -0
  43. data/chef-solo/vendored-cookbooks/homebrew/resources/tap.rb +35 -0
  44. data/lib/natives/app.rb +53 -0
  45. data/lib/natives/cli.rb +11 -0
  46. data/lib/natives.rb +0 -0
  47. data/natives.gemspec +113 -0
  48. data/spec/natives/app_spec.rb +68 -0
  49. data/spec/spec_helper.rb +12 -0
  50. metadata +224 -0
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ M2NiMDdhNjk5YzU4OWZlZTY5OTc4ZWRjZjNhZjE5NmJhMWIxOWY0Mw==
5
+ data.tar.gz: !binary |-
6
+ YjcyZTY1NzI3NTk2YTY1Y2IwZDM1ZjA3Yzk5NDZkMzg3MzQ1NTA4ZQ==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ ZmQ3Njg5ZGMyMzg5YWFjMDc2ZDNiNTI1YmNlMTU1OGUyZTBkNzc2Njg1YjI3
10
+ MThkMGE2YjcxZWE5NDA4ZGZkY2QyMmFlZWJkMmQxOWRmZDFlMTc0YWRhNTlj
11
+ ZTUyNWYyMGUyMmNiN2NhMGNlNzFhNDBkZDljN2NiYjhiOGZhNTI=
12
+ data.tar.gz: !binary |-
13
+ YmUwNzMxMjYxOTk3OWExMWEzZTBiMzlmY2JiNzBhY2Y3MjdkMmYzMzMyZGNk
14
+ YmZhZDE4MTYxMzdmYjBkNDBiMWMxNTM5ZDNmMDhmNTlhNDQyOTQwNjIxYWFk
15
+ NzZkMWYxYjRhZTJmMzA5ZDNjM2I2OTgwM2Y1MDdhNGI4MmUyYTg=
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/Gemfile ADDED
@@ -0,0 +1,17 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+
4
+ gem "chef", ">= 11.6.2"
5
+ gem "natives-catalog", ">= 0.3"
6
+ gem "thor"
7
+
8
+ # Add dependencies to develop your gem here.
9
+ # Include everything needed to run rake, tests, features, etc.
10
+ group :development do
11
+ gem "rspec"
12
+ gem "yard"
13
+ gem "rdoc"
14
+ gem "bundler"
15
+ gem "jeweler"
16
+ gem "simplecov"
17
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,137 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ addressable (2.3.5)
5
+ builder (3.2.2)
6
+ chef (11.8.0)
7
+ chef-zero (~> 1.6, >= 1.6.2)
8
+ diff-lcs (~> 1.2, >= 1.2.4)
9
+ erubis (~> 2.7)
10
+ highline (~> 1.6, >= 1.6.9)
11
+ json (>= 1.4.4, <= 1.7.7)
12
+ mime-types (~> 1.16)
13
+ mixlib-authentication (~> 1.3)
14
+ mixlib-cli (~> 1.3)
15
+ mixlib-config (~> 2.0)
16
+ mixlib-log (~> 1.3)
17
+ mixlib-shellout (~> 1.2)
18
+ net-ssh (~> 2.6)
19
+ net-ssh-multi (~> 1.1.0)
20
+ ohai (~> 6.0)
21
+ pry (~> 0.9)
22
+ puma (~> 1.6)
23
+ rest-client (>= 1.0.4, < 1.7.0)
24
+ yajl-ruby (~> 1.1)
25
+ chef-zero (1.7)
26
+ hashie (~> 2.0)
27
+ json
28
+ mixlib-log (~> 1.3)
29
+ moneta (< 0.7.0)
30
+ rack
31
+ coderay (1.0.9)
32
+ diff-lcs (1.2.4)
33
+ erubis (2.7.0)
34
+ faraday (0.8.8)
35
+ multipart-post (~> 1.2.0)
36
+ git (1.2.6)
37
+ github_api (0.10.1)
38
+ addressable
39
+ faraday (~> 0.8.1)
40
+ hashie (>= 1.2)
41
+ multi_json (~> 1.4)
42
+ nokogiri (~> 1.5.2)
43
+ oauth2
44
+ hashie (2.0.5)
45
+ highline (1.6.20)
46
+ httpauth (0.2.0)
47
+ ipaddress (0.8.0)
48
+ jeweler (1.8.8)
49
+ builder
50
+ bundler (~> 1.0)
51
+ git (>= 1.2.5)
52
+ github_api (= 0.10.1)
53
+ highline (>= 1.6.15)
54
+ nokogiri (= 1.5.10)
55
+ rake
56
+ rdoc
57
+ json (1.7.7)
58
+ jwt (0.1.8)
59
+ multi_json (>= 1.5)
60
+ method_source (0.8.2)
61
+ mime-types (1.25)
62
+ mixlib-authentication (1.3.0)
63
+ mixlib-log
64
+ mixlib-cli (1.3.0)
65
+ mixlib-config (2.0.0)
66
+ mixlib-log (1.6.0)
67
+ mixlib-shellout (1.2.0)
68
+ moneta (0.6.0)
69
+ multi_json (1.8.2)
70
+ multi_xml (0.5.5)
71
+ multipart-post (1.2.0)
72
+ natives-catalog (0.3.0)
73
+ net-ssh (2.7.0)
74
+ net-ssh-gateway (1.2.0)
75
+ net-ssh (>= 2.6.5)
76
+ net-ssh-multi (1.1)
77
+ net-ssh (>= 2.1.4)
78
+ net-ssh-gateway (>= 0.99.0)
79
+ nokogiri (1.5.10)
80
+ oauth2 (0.9.2)
81
+ faraday (~> 0.8)
82
+ httpauth (~> 0.2)
83
+ jwt (~> 0.1.4)
84
+ multi_json (~> 1.0)
85
+ multi_xml (~> 0.5)
86
+ rack (~> 1.2)
87
+ ohai (6.20.0)
88
+ ipaddress
89
+ mixlib-cli
90
+ mixlib-config
91
+ mixlib-log
92
+ mixlib-shellout
93
+ systemu (~> 2.5.2)
94
+ yajl-ruby
95
+ pry (0.9.12.2)
96
+ coderay (~> 1.0.5)
97
+ method_source (~> 0.8)
98
+ slop (~> 3.4)
99
+ puma (1.6.3)
100
+ rack (~> 1.2)
101
+ rack (1.5.2)
102
+ rake (10.1.0)
103
+ rdoc (4.0.1)
104
+ json (~> 1.4)
105
+ rest-client (1.6.7)
106
+ mime-types (>= 1.16)
107
+ rspec (2.14.1)
108
+ rspec-core (~> 2.14.0)
109
+ rspec-expectations (~> 2.14.0)
110
+ rspec-mocks (~> 2.14.0)
111
+ rspec-core (2.14.6)
112
+ rspec-expectations (2.14.3)
113
+ diff-lcs (>= 1.1.3, < 2.0)
114
+ rspec-mocks (2.14.4)
115
+ simplecov (0.7.1)
116
+ multi_json (~> 1.0)
117
+ simplecov-html (~> 0.7.1)
118
+ simplecov-html (0.7.1)
119
+ slop (3.4.6)
120
+ systemu (2.5.2)
121
+ thor (0.18.1)
122
+ yajl-ruby (1.1.0)
123
+ yard (0.8.7.2)
124
+
125
+ PLATFORMS
126
+ ruby
127
+
128
+ DEPENDENCIES
129
+ bundler
130
+ chef (>= 11.6.2)
131
+ jeweler
132
+ natives-catalog (>= 0.3)
133
+ rdoc
134
+ rspec
135
+ simplecov
136
+ thor
137
+ yard
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2013 Huiming Teo
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,19 @@
1
+ = natives
2
+
3
+ Description goes here.
4
+
5
+ == Contributing to natives
6
+
7
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
8
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
9
+ * Fork the project.
10
+ * Start a feature/bugfix branch.
11
+ * Commit and push until you are happy with your contribution.
12
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2013 Huiming Teo. See LICENSE.txt for
18
+ further details.
19
+
data/Rakefile ADDED
@@ -0,0 +1,42 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "natives"
18
+ gem.homepage = "http://github.com/teohm/natives"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{Install libraries required by rubygems' native extension.}
21
+ gem.description = %Q{Automate libraries installation required by rubygems' native extension.}
22
+ gem.email = "teohuiming@gmail.com"
23
+ gem.authors = ["Huiming Teo"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rspec/core'
29
+ require 'rspec/core/rake_task'
30
+ RSpec::Core::RakeTask.new(:spec) do |spec|
31
+ spec.pattern = FileList['spec/**/*_spec.rb']
32
+ end
33
+
34
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
35
+ spec.pattern = 'spec/**/*_spec.rb'
36
+ spec.rcov = true
37
+ end
38
+
39
+ task :default => :spec
40
+
41
+ require 'yard'
42
+ YARD::Rake::YardocTask.new
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.0
data/bin/natives ADDED
@@ -0,0 +1,7 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
4
+
5
+ require 'natives/cli'
6
+
7
+ Natives::Cli.start
@@ -0,0 +1,17 @@
1
+ .vagrant
2
+ Berksfile.lock
3
+ *~
4
+ *#
5
+ .#*
6
+ \#*#
7
+ .*.sw[a-z]
8
+ *.un~
9
+ /cookbooks
10
+
11
+ # Bundler
12
+ Gemfile.lock
13
+ bin/*
14
+ .bundle/*
15
+
16
+ .kitchen/
17
+ .kitchen.local.yml
@@ -0,0 +1,27 @@
1
+ ---
2
+ driver_plugin: vagrant
3
+ driver_config:
4
+ require_chef_omnibus: true
5
+
6
+ platforms:
7
+ - name: ubuntu-12.04
8
+ driver_config:
9
+ box: opscode-ubuntu-12.04
10
+ box_url: https://opscode-vm.s3.amazonaws.com/vagrant/opscode_ubuntu-12.04_provisionerless.box
11
+ - name: ubuntu-10.04
12
+ driver_config:
13
+ box: opscode-ubuntu-10.04
14
+ box_url: https://opscode-vm.s3.amazonaws.com/vagrant/opscode_ubuntu-10.04_provisionerless.box
15
+ - name: centos-6.4
16
+ driver_config:
17
+ box: opscode-centos-6.4
18
+ box_url: https://opscode-vm.s3.amazonaws.com/vagrant/opscode_centos-6.4_provisionerless.box
19
+ - name: centos-5.9
20
+ driver_config:
21
+ box: opscode-centos-5.9
22
+ box_url: https://opscode-vm.s3.amazonaws.com/vagrant/opscode_centos-5.9_provisionerless.box
23
+
24
+ suites:
25
+ - name: default
26
+ run_list: []
27
+ attributes: {}
@@ -0,0 +1,4 @@
1
+ site :opscode
2
+
3
+ cookbook 'homebrew', '>= 1.5.0'
4
+ cookbook 'apt', '>= 2.3.0'
@@ -0,0 +1,17 @@
1
+ log_level :warn
2
+
3
+ base_path = File.absolute_path(File.join(File.dirname(__FILE__)))
4
+
5
+ cookbook_path [
6
+ File.join(base_path, 'cookbooks'),
7
+ File.join(base_path, 'vendored-cookbooks')
8
+ ]
9
+
10
+ nodes_path File.join(base_path, 'nodes')
11
+ role_path File.join(base_path, 'roles')
12
+ data_bag_path File.join(base_path, 'data_bags')
13
+ encrypted_data_bag_secret File.join(base_path, 'data_bag_key')
14
+
15
+ chef_tmp_path = File.absolute_path(File.join('.', '.natives/chef'))
16
+ file_cache_path File.join(chef_tmp_path, 'cache')
17
+ file_backup_path File.join(chef_tmp_path, 'backup')
@@ -0,0 +1,144 @@
1
+ apt Cookbook CHANGELOG
2
+ ======================
3
+ This file is used to list changes made in each version of the apt cookbook.
4
+
5
+
6
+ v2.3.0
7
+ ------
8
+ ### Bug
9
+ - **[COOK-3812](https://tickets.opscode.com/browse/COOK-3812)** - Add a way to bypass the apt existence check
10
+
11
+ ### Improvement
12
+ - **[COOK-3567](https://tickets.opscode.com/browse/COOK-3567)** - Allow users to bypass apt-cache via attributes
13
+
14
+
15
+ v2.2.1
16
+ ------
17
+ ### Improvement
18
+ - **[COOK-664](https://tickets.opscode.com/browse/COOK-664)** - Check platform before running apt-specific commands
19
+
20
+
21
+ v2.2.0
22
+ ------
23
+ ### Bug
24
+ - **[COOK-3707](https://tickets.opscode.com/browse/COOK-3707)** - multiple nics confuse apt::cacher-client
25
+
26
+ v2.1.2
27
+ ------
28
+ ### Improvement
29
+ - **[COOK-3551](https://tickets.opscode.com/browse/COOK-3551)** - Allow user to set up a trusted APT repository
30
+
31
+ v2.1.1
32
+ ------
33
+ ### Bug
34
+ - **[COOK-1856](https://tickets.opscode.com/browse/COOK-1856)** - Match GPG keys without case sensitivity
35
+
36
+ v2.1.0
37
+ ------
38
+ - [COOK-3426]: cacher-ng fails with restrict_environment set to true
39
+ - [COOK-2859]: cacher-client executes out of order
40
+ - [COOK-3052]: Long GPG keys are downloaded on every run
41
+ - [COOK-1856]: apt cookbook should match keys without case sensitivity
42
+ - [COOK-3255]: Attribute name incorrect in README
43
+ - [COOK-3225]: Call use_inline_resources only if defined
44
+ - [COOK-3386]: Cache dir for apt-cacher-ng
45
+ - [COOK-3291]: apt_repository: enable usage of a keyserver on port 80
46
+ - Greatly expanded test coverage with ChefSpec and Test-Kitchen
47
+
48
+ v2.0.0
49
+ ------
50
+ ### Bug
51
+
52
+ - [COOK-2258]: apt: LWRP results in error under why-run mode in apt 1.9.0 cookbook
53
+
54
+ v1.10.0
55
+ -------
56
+ ### Improvement
57
+
58
+ - [COOK-2885]: Improvements for apt cache server search
59
+
60
+ ### Bug
61
+
62
+ - [COOK-2441]: Apt recipe broken in new chef version
63
+ - [COOK-2660]: Create Debian 6.0 "squeeze" specific template for
64
+ apt-cacher-ng
65
+
66
+ v1.9.2
67
+ ------
68
+ - [COOK-2631] - Create Ubuntu 10.04 specific template for apt-cacher-ng
69
+
70
+ v1.9.0
71
+ ------
72
+ - [COOK-2185] - Proxy for apt-key
73
+ - [COOK-2338] - Support pinning by glob() or regexp
74
+
75
+ v1.8.4
76
+ ------
77
+ - [COOK-2171] - Update README to clarify required Chef version: 10.18.0
78
+ or higher.
79
+
80
+ v1.8.2
81
+ ------
82
+ - [COOK-2112] - need [] around "arch" in sources.list entries
83
+ - [COOK-2171] - fixes a regression in the notification
84
+
85
+ v1.8.0
86
+ ------
87
+ - [COOK-2143] - Allow for a custom cacher-ng port
88
+ - [COOK-2171] - On `apt_repository.run_action(:add)` the source file
89
+ is not created.
90
+ - [COOK-2184] - apt::cacher-ng, use `cacher_port` attribute in
91
+ acng.conf
92
+
93
+ v1.7.0
94
+ ------
95
+ - [COOK-2082] - add "arch" parameter to apt_repository LWRP
96
+
97
+ v1.6.0
98
+ ------
99
+ - [COOK-1893] - `apt_preference` use "`package_name`" resource instead of "name"
100
+ - [COOK-1894] - change filename for sources.list.d files
101
+ - [COOK-1914] - Wrong dir permissions for /etc/apt/preferences.d/
102
+ - [COOK-1942] - README.md has wrong name for the keyserver attribute
103
+ - [COOK-2019] - create 01proxy before any other apt-get updates get executed
104
+
105
+ v1.5.2
106
+ ------
107
+ - [COOK-1682] - use template instead of file resource in apt::cacher-client
108
+ - [COOK-1875] - cacher-client should be Environment-aware
109
+
110
+ V1.5.0
111
+ ------
112
+ - [COOK-1500] - Avoid triggering apt-get update
113
+ - [COOK-1548] - Add execute commands for autoclean and autoremove
114
+ - [COOK-1591] - Setting up the apt proxy should leave https
115
+ connections direct
116
+ - [COOK-1596] - execute[apt-get-update-periodic] never runs
117
+ - [COOK-1762] - create /etc/apt/preferences.d directory
118
+ - [COOK-1776] - apt key check isn't idempotent
119
+
120
+ v1.4.8
121
+ ------
122
+ * Adds test-kitchen support
123
+ - [COOK-1435] - repository lwrp is not idempotent with http key
124
+
125
+ v1.4.6
126
+ ------
127
+ - [COOK-1530] - apt_repository isn't aware of update-success-stamp
128
+ file (also reverts COOK-1382 patch).
129
+
130
+ v1.4.4
131
+ ------
132
+ - [COOK-1229] - Allow cacher IP to be set manually in non-Chef Solo
133
+ environments
134
+ - [COOK-1530] - Immediately update apt-cache when sources.list file is dropped off
135
+
136
+ v1.4.2
137
+ ------
138
+ - [COOK-1155] - LWRP for apt pinning
139
+
140
+ v1.4.0
141
+ ------
142
+ - [COOK-889] - overwrite existing repo source files
143
+ - [COOK-921] - optionally use cookbook\_file or remote\_file for key
144
+ - [COOK-1032] - fixes problem with apt repository key installation