Skip to content

Commit 81e5f62

Browse files
author
jtimberman
committed
[COOK-2885] - Add attribute, exclude node
* Set an attribute (caching_server) to true if the node should be a caching server. This is done in the cacher-ng recipe. * Search for the server based on the above attribute. * Exclude the node itself from search, else apt may fail to install packages. * Update metadata with attributes.
1 parent 108cf2c commit 81e5f62

File tree

5 files changed

+23
-2
lines changed

5 files changed

+23
-2
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,14 @@ includes the `cacher-client` recipe, so it helps seed itself.
5353

5454
cacher-client
5555
-------------
56+
5657
Configures the node to use the `apt-cacher-ng` server as a client. If you
5758
want to restrict your node to using the `apt-cacher-ng` server in your
5859
Environment, set `['apt']['cacher-client']['restrict_environment']` to `true`.
60+
5961
To use a cacher server (or standard proxy server) not available via search
6062
set the atttribute `['apt']['cacher-ipaddress']` and for a custom port
61-
set `['apt']['cacher_port']`
63+
set `['apt']['cacher_port']`.
6264

6365
Resources/Providers
6466
===================

attributes/default.rb

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
default['apt']['cacher-client']['restrict_environment'] = false
22
default['apt']['cacher_port'] = 3142
33
default['apt']['key_proxy'] = ''
4+
default['apt']['caching_server'] = false

metadata.rb

+16
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,19 @@
1212
%w{ ubuntu debian }.each do |os|
1313
supports os
1414
end
15+
16+
attribute "apt/cacher-client/restrict_environment",
17+
:description => "Whether to restrict the search for the caching server to the same environment as this node",
18+
:default => false
19+
20+
attribute "apt/cacher_port",
21+
:description => "Default listen port for the caching server",
22+
:default => "3142"
23+
24+
attribute "apt/key_proxy",
25+
:description => "Passed as the proxy passed to GPG for the apt_repository resource"
26+
:default => ""
27+
28+
attribute "apt/caching_server",
29+
:description => "Set this to true if the node is a caching server"
30+
:default => false

recipes/cacher-client.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
end
3434

3535
unless Chef::Config[:solo]
36-
query = 'recipes:apt\:\:cacher-ng'
36+
query = "apt_caching_server:true NOT name:#{node.name}"
3737
query += " AND chef_environment:#{node.chef_environment}" if node['apt']['cacher-client']['restrict_environment']
3838
Chef::Log.debug("apt::cacher-client searching for '#{query}'")
3939
servers += search(:node, query)

recipes/cacher-ng.rb

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
# limitations under the License.
1818
#
1919

20+
node.set['apt']['caching_server'] = true
21+
2022
package "apt-cacher-ng" do
2123
action :install
2224
end

0 commit comments

Comments
 (0)