giraffesoft-chef 0.7.15
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +201 -0
- data/README.rdoc +135 -0
- data/bin/chef-client +26 -0
- data/bin/chef-solo +26 -0
- data/distro/debian/etc/init.d/chef-client +175 -0
- data/distro/debian/etc/init.d/chef-indexer +175 -0
- data/distro/debian/etc/init.d/chef-server +120 -0
- data/distro/debian/man/man1/chef-indexer.1 +42 -0
- data/distro/debian/man/man1/chef-server.1 +108 -0
- data/distro/debian/man/man8/chef-client.8 +61 -0
- data/distro/debian/man/man8/chef-solo.8 +58 -0
- data/distro/redhat/etc/chef/client.rb +16 -0
- data/distro/redhat/etc/chef/indexer.rb +10 -0
- data/distro/redhat/etc/chef/server.rb +22 -0
- data/distro/redhat/etc/init.d/chef-client +74 -0
- data/distro/redhat/etc/init.d/chef-indexer +76 -0
- data/distro/redhat/etc/init.d/chef-server +77 -0
- data/lib/chef.rb +49 -0
- data/lib/chef/application.rb +98 -0
- data/lib/chef/application/agent.rb +18 -0
- data/lib/chef/application/client.rb +209 -0
- data/lib/chef/application/indexer.rb +141 -0
- data/lib/chef/application/server.rb +18 -0
- data/lib/chef/application/solo.rb +214 -0
- data/lib/chef/client.rb +421 -0
- data/lib/chef/compile.rb +170 -0
- data/lib/chef/config.rb +141 -0
- data/lib/chef/cookbook.rb +171 -0
- data/lib/chef/cookbook/metadata.rb +407 -0
- data/lib/chef/cookbook/metadata/version.rb +87 -0
- data/lib/chef/cookbook_loader.rb +180 -0
- data/lib/chef/couchdb.rb +176 -0
- data/lib/chef/daemon.rb +170 -0
- data/lib/chef/exceptions.rb +36 -0
- data/lib/chef/file_cache.rb +205 -0
- data/lib/chef/log.rb +39 -0
- data/lib/chef/mixin/check_helper.rb +31 -0
- data/lib/chef/mixin/checksum.rb +37 -0
- data/lib/chef/mixin/command.rb +386 -0
- data/lib/chef/mixin/convert_to_class_name.rb +48 -0
- data/lib/chef/mixin/create_path.rb +56 -0
- data/lib/chef/mixin/deep_merge.rb +36 -0
- data/lib/chef/mixin/find_preferred_file.rb +92 -0
- data/lib/chef/mixin/from_file.rb +50 -0
- data/lib/chef/mixin/generate_url.rb +49 -0
- data/lib/chef/mixin/language.rb +79 -0
- data/lib/chef/mixin/params_validate.rb +197 -0
- data/lib/chef/mixin/recipe_definition_dsl_core.rb +77 -0
- data/lib/chef/mixin/template.rb +84 -0
- data/lib/chef/node.rb +406 -0
- data/lib/chef/node/attribute.rb +412 -0
- data/lib/chef/openid_registration.rb +181 -0
- data/lib/chef/platform.rb +254 -0
- data/lib/chef/provider.rb +101 -0
- data/lib/chef/provider/cron.rb +187 -0
- data/lib/chef/provider/deploy.rb +281 -0
- data/lib/chef/provider/deploy/revision.rb +70 -0
- data/lib/chef/provider/deploy/timestamped.rb +33 -0
- data/lib/chef/provider/directory.rb +72 -0
- data/lib/chef/provider/execute.rb +58 -0
- data/lib/chef/provider/file.rb +191 -0
- data/lib/chef/provider/git.rb +198 -0
- data/lib/chef/provider/group.rb +120 -0
- data/lib/chef/provider/group/gpasswd.rb +50 -0
- data/lib/chef/provider/group/groupadd.rb +78 -0
- data/lib/chef/provider/group/pw.rb +88 -0
- data/lib/chef/provider/group/usermod.rb +57 -0
- data/lib/chef/provider/http_request.rb +102 -0
- data/lib/chef/provider/ifconfig.rb +131 -0
- data/lib/chef/provider/link.rb +157 -0
- data/lib/chef/provider/mount.rb +117 -0
- data/lib/chef/provider/mount/mount.rb +208 -0
- data/lib/chef/provider/package.rb +160 -0
- data/lib/chef/provider/package/apt.rb +110 -0
- data/lib/chef/provider/package/dpkg.rb +109 -0
- data/lib/chef/provider/package/freebsd.rb +153 -0
- data/lib/chef/provider/package/macports.rb +105 -0
- data/lib/chef/provider/package/portage.rb +124 -0
- data/lib/chef/provider/package/rpm.rb +99 -0
- data/lib/chef/provider/package/rubygems.rb +136 -0
- data/lib/chef/provider/package/yum-dump.py +106 -0
- data/lib/chef/provider/package/yum.rb +175 -0
- data/lib/chef/provider/remote_directory.rb +126 -0
- data/lib/chef/provider/remote_file.rb +141 -0
- data/lib/chef/provider/route.rb +118 -0
- data/lib/chef/provider/ruby_block.rb +15 -0
- data/lib/chef/provider/script.rb +42 -0
- data/lib/chef/provider/service.rb +135 -0
- data/lib/chef/provider/service/debian.rb +64 -0
- data/lib/chef/provider/service/freebsd.rb +157 -0
- data/lib/chef/provider/service/gentoo.rb +54 -0
- data/lib/chef/provider/service/init.rb +71 -0
- data/lib/chef/provider/service/redhat.rb +62 -0
- data/lib/chef/provider/service/simple.rb +115 -0
- data/lib/chef/provider/subversion.rb +148 -0
- data/lib/chef/provider/template.rb +143 -0
- data/lib/chef/provider/user.rb +170 -0
- data/lib/chef/provider/user/pw.rb +113 -0
- data/lib/chef/provider/user/useradd.rb +107 -0
- data/lib/chef/queue.rb +145 -0
- data/lib/chef/recipe.rb +144 -0
- data/lib/chef/resource.rb +380 -0
- data/lib/chef/resource/apt_package.rb +34 -0
- data/lib/chef/resource/bash.rb +33 -0
- data/lib/chef/resource/cron.rb +179 -0
- data/lib/chef/resource/csh.rb +33 -0
- data/lib/chef/resource/deploy.rb +350 -0
- data/lib/chef/resource/deploy_revision.rb +35 -0
- data/lib/chef/resource/directory.rb +76 -0
- data/lib/chef/resource/dpkg_package.rb +34 -0
- data/lib/chef/resource/execute.rb +127 -0
- data/lib/chef/resource/file.rb +84 -0
- data/lib/chef/resource/gem_package.rb +41 -0
- data/lib/chef/resource/git.rb +36 -0
- data/lib/chef/resource/group.rb +70 -0
- data/lib/chef/resource/http_request.rb +52 -0
- data/lib/chef/resource/ifconfig.rb +134 -0
- data/lib/chef/resource/link.rb +78 -0
- data/lib/chef/resource/macports_package.rb +29 -0
- data/lib/chef/resource/mount.rb +135 -0
- data/lib/chef/resource/package.rb +80 -0
- data/lib/chef/resource/perl.rb +33 -0
- data/lib/chef/resource/portage_package.rb +33 -0
- data/lib/chef/resource/python.rb +33 -0
- data/lib/chef/resource/remote_directory.rb +91 -0
- data/lib/chef/resource/remote_file.rb +60 -0
- data/lib/chef/resource/route.rb +135 -0
- data/lib/chef/resource/ruby.rb +33 -0
- data/lib/chef/resource/ruby_block.rb +20 -0
- data/lib/chef/resource/scm.rb +129 -0
- data/lib/chef/resource/script.rb +51 -0
- data/lib/chef/resource/service.rb +134 -0
- data/lib/chef/resource/subversion.rb +33 -0
- data/lib/chef/resource/template.rb +60 -0
- data/lib/chef/resource/timestamped_deploy.rb +31 -0
- data/lib/chef/resource/user.rb +98 -0
- data/lib/chef/resource_collection.rb +204 -0
- data/lib/chef/resource_definition.rb +67 -0
- data/lib/chef/rest.rb +238 -0
- data/lib/chef/role.rb +231 -0
- data/lib/chef/run_list.rb +156 -0
- data/lib/chef/runner.rb +130 -0
- data/lib/chef/search.rb +88 -0
- data/lib/chef/search/result.rb +64 -0
- data/lib/chef/search_index.rb +77 -0
- data/lib/chef/tasks/chef_repo.rake +347 -0
- data/lib/chef/util/file_edit.rb +125 -0
- data/lib/chef/util/fileedit.rb +121 -0
- metadata +293 -0
@@ -0,0 +1,50 @@
|
|
1
|
+
#
|
2
|
+
# Author:: AJ Christensen (<aj@opscode.com>)
|
3
|
+
# Copyright:: Copyright (c) 2008 OpsCode, Inc.
|
4
|
+
# License:: Apache License, Version 2.0
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
|
19
|
+
require 'chef/provider/group/groupadd'
|
20
|
+
|
21
|
+
class Chef
|
22
|
+
class Provider
|
23
|
+
class Group
|
24
|
+
class Gpasswd < Chef::Provider::Group::Groupadd
|
25
|
+
|
26
|
+
def load_current_resource
|
27
|
+
super
|
28
|
+
|
29
|
+
raise Chef::Exceptions::Group, "Could not find binary /usr/bin/gpasswd for #{@new_resource}" unless ::File.exists?("/usr/bin/gpasswd")
|
30
|
+
end
|
31
|
+
|
32
|
+
def modify_group_members
|
33
|
+
unless @new_resource.members.empty?
|
34
|
+
if(@new_resource.append)
|
35
|
+
@new_resource.members.each do |member|
|
36
|
+
Chef::Log.debug("#{@new_resource}: appending member #{member} to group #{@new_resource.group_name}")
|
37
|
+
run_command(:command => "gpasswd -a #{member} #{@new_resource.group_name}")
|
38
|
+
end
|
39
|
+
else
|
40
|
+
Chef::Log.debug("#{@new_resource}: setting group members to #{@new_resource.members.join(', ')}")
|
41
|
+
run_command(:command => "gpasswd -M #{@new_resource.members.join(',')} #{@new_resource.group_name}")
|
42
|
+
end
|
43
|
+
else
|
44
|
+
Chef::Log.debug("#{@new_resource}: not changing group members, the group has no members")
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,78 @@
|
|
1
|
+
#
|
2
|
+
# Author:: AJ Christensen (<aj@opscode.com>)
|
3
|
+
# Copyright:: Copyright (c) 2008 OpsCode, Inc.
|
4
|
+
# License:: Apache License, Version 2.0
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
|
19
|
+
class Chef
|
20
|
+
class Provider
|
21
|
+
class Group
|
22
|
+
class Groupadd < Chef::Provider::Group
|
23
|
+
|
24
|
+
def load_current_resource
|
25
|
+
super
|
26
|
+
|
27
|
+
[ "/usr/sbin/groupadd",
|
28
|
+
"/usr/sbin/groupmod",
|
29
|
+
"/usr/sbin/groupdel" ].each do |required_binary|
|
30
|
+
raise Chef::Exceptions::Group, "Could not find binary #{required_binary} for #{@new_resource}" unless ::File.exists?(required_binary)
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
34
|
+
# Create the group
|
35
|
+
def create_group
|
36
|
+
command = "groupadd"
|
37
|
+
command << set_options
|
38
|
+
run_command(:command => command)
|
39
|
+
modify_group_members
|
40
|
+
end
|
41
|
+
|
42
|
+
# Manage the group when it already exists
|
43
|
+
def manage_group
|
44
|
+
command = "groupmod"
|
45
|
+
command << set_options
|
46
|
+
run_command(:command => command)
|
47
|
+
modify_group_members
|
48
|
+
end
|
49
|
+
|
50
|
+
# Remove the group
|
51
|
+
def remove_group
|
52
|
+
run_command(:command => "groupdel #{@new_resource.group_name}")
|
53
|
+
end
|
54
|
+
|
55
|
+
def modify_group_members
|
56
|
+
raise Chef::Exceptions::Group, "you must override modify_group_members in #{self.to_s}"
|
57
|
+
end
|
58
|
+
# Little bit of magic as per Adam's useradd provider to pull the assign the command line flags
|
59
|
+
#
|
60
|
+
# ==== Returns
|
61
|
+
# <string>:: A string containing the option and then the quoted value
|
62
|
+
def set_options
|
63
|
+
opts = ""
|
64
|
+
{ :gid => "-g" }.sort { |a,b| a[0] <=> b[0] }.each do |field, option|
|
65
|
+
if @current_resource.send(field) != @new_resource.send(field)
|
66
|
+
if @new_resource.send(field)
|
67
|
+
Chef::Log.debug("#{@new_resource}: setting #{field.to_s} to #{@new_resource.send(field)}")
|
68
|
+
opts << " #{option} '#{@new_resource.send(field)}'"
|
69
|
+
end
|
70
|
+
end
|
71
|
+
end
|
72
|
+
opts << " #{@new_resource.group_name}"
|
73
|
+
end
|
74
|
+
|
75
|
+
end
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
@@ -0,0 +1,88 @@
|
|
1
|
+
#
|
2
|
+
# Author:: Stephen Haynes (<sh@nomitor.com>)
|
3
|
+
# Copyright:: Copyright (c) 2009 Opscode, Inc.
|
4
|
+
# License:: Apache License, Version 2.0
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
|
19
|
+
class Chef
|
20
|
+
class Provider
|
21
|
+
class Group
|
22
|
+
class Pw < Chef::Provider::Group
|
23
|
+
|
24
|
+
def load_current_resource
|
25
|
+
super
|
26
|
+
raise Chef::Exceptions::Group, "Could not find binary /usr/sbin/pw for #{@new_resource}" unless ::File.exists?("/usr/sbin/pw")
|
27
|
+
end
|
28
|
+
|
29
|
+
# Create the group
|
30
|
+
def create_group
|
31
|
+
command = "pw groupadd"
|
32
|
+
command << set_options
|
33
|
+
command << set_members_option
|
34
|
+
run_command(:command => command)
|
35
|
+
end
|
36
|
+
|
37
|
+
# Manage the group when it already exists
|
38
|
+
def manage_group
|
39
|
+
command = "pw groupmod"
|
40
|
+
command << set_options
|
41
|
+
command << set_members_option
|
42
|
+
run_command(:command => command)
|
43
|
+
end
|
44
|
+
|
45
|
+
# Remove the group
|
46
|
+
def remove_group
|
47
|
+
run_command(:command => "pw groupdel #{@new_resource.group_name}")
|
48
|
+
end
|
49
|
+
|
50
|
+
# Little bit of magic as per Adam's useradd provider to pull and assign the command line flags
|
51
|
+
#
|
52
|
+
# ==== Returns
|
53
|
+
# <string>:: A string containing the option and then the quoted value
|
54
|
+
def set_options
|
55
|
+
opts = " #{@new_resource.group_name}"
|
56
|
+
{ :gid => "-g" }.sort { |a,b| a[0] <=> b[0] }.each do |field, option|
|
57
|
+
if @current_resource.send(field) != @new_resource.send(field)
|
58
|
+
if @new_resource.send(field)
|
59
|
+
Chef::Log.debug("#{@new_resource}: setting #{field.to_s} to #{@new_resource.send(field)}")
|
60
|
+
opts << " #{option} '#{@new_resource.send(field)}'"
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
opts
|
65
|
+
end
|
66
|
+
|
67
|
+
# Set the membership option depending on the current resource states
|
68
|
+
def set_members_option
|
69
|
+
opt = ""
|
70
|
+
unless @new_resource.members.empty?
|
71
|
+
opt << " -M #{@new_resource.members.join(',')}"
|
72
|
+
Chef::Log.debug("#{@new_resource}: setting group members to #{@new_resource.members.join(', ')}")
|
73
|
+
else
|
74
|
+
# New member list is empty so we should delete any old group members
|
75
|
+
unless @current_resource.members.empty?
|
76
|
+
opt << " -d #{@current_resource.members.join(',')}"
|
77
|
+
Chef::Log.debug("#{@new_resource}: removing group members #{@current_resource.members.join(', ')}")
|
78
|
+
else
|
79
|
+
Chef::Log.debug("#{@new_resource}: not changing group members, the group has no members")
|
80
|
+
end
|
81
|
+
end
|
82
|
+
opt
|
83
|
+
end
|
84
|
+
|
85
|
+
end
|
86
|
+
end
|
87
|
+
end
|
88
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
#
|
2
|
+
# Author:: AJ Christensen (<aj@opscode.com>)
|
3
|
+
# Copyright:: Copyright (c) 2008 OpsCode, Inc.
|
4
|
+
# License:: Apache License, Version 2.0
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
|
19
|
+
require 'chef/provider/group/groupadd'
|
20
|
+
|
21
|
+
class Chef
|
22
|
+
class Provider
|
23
|
+
class Group
|
24
|
+
class Usermod < Chef::Provider::Group::Groupadd
|
25
|
+
|
26
|
+
def load_current_resource
|
27
|
+
super
|
28
|
+
|
29
|
+
raise Chef::Exceptions::Group, "Could not find binary /usr/sbin/usermod for #{@new_resource}" unless ::File.exists?("/usr/sbin/usermod")
|
30
|
+
end
|
31
|
+
|
32
|
+
def modify_group_members
|
33
|
+
case node[:platform]
|
34
|
+
when "openbsd", "netbsd"
|
35
|
+
append_flags = "-G"
|
36
|
+
when "solaris"
|
37
|
+
append_flags = "-a -G"
|
38
|
+
end
|
39
|
+
|
40
|
+
unless @new_resource.members.empty?
|
41
|
+
if(@new_resource.append)
|
42
|
+
@new_resource.members.each do |member|
|
43
|
+
Chef::Log.debug("#{@new_resource}: appending member #{member} to group #{@new_resource.group_name}")
|
44
|
+
run_command(:command => "usermod #{append_flags} #{@new_resource.group_name} #{member}" )
|
45
|
+
|
46
|
+
end
|
47
|
+
else
|
48
|
+
raise Chef::Exceptions::Group, "setting group members directly is not supported by #{self.to_s}"
|
49
|
+
end
|
50
|
+
else
|
51
|
+
Chef::Log.debug("#{@new_resource}: not changing group members, the group has no members")
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
@@ -0,0 +1,102 @@
|
|
1
|
+
#
|
2
|
+
# Author:: Adam Jacob (<adam@opscode.com>)
|
3
|
+
# Copyright:: Copyright (c) 2008 Opscode, Inc.
|
4
|
+
# License:: Apache License, Version 2.0
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
|
19
|
+
require 'tempfile'
|
20
|
+
|
21
|
+
class Chef
|
22
|
+
class Provider
|
23
|
+
class HttpRequest < Chef::Provider
|
24
|
+
|
25
|
+
attr_accessor :rest
|
26
|
+
|
27
|
+
def load_current_resource
|
28
|
+
@rest = Chef::REST.new(@new_resource.url)
|
29
|
+
end
|
30
|
+
|
31
|
+
# Send a GET request to @new_resource.url, with ?message=@new_resource.message
|
32
|
+
def action_get
|
33
|
+
message = check_message(@new_resource.message)
|
34
|
+
body = @rest.run_request(
|
35
|
+
:GET,
|
36
|
+
@rest.create_url("#{@new_resource.url}?message=#{message}"),
|
37
|
+
false,
|
38
|
+
10,
|
39
|
+
false
|
40
|
+
)
|
41
|
+
@new_resource.updated = true
|
42
|
+
Chef::Log.info("#{@new_resource} GET to #{@new_resource.url} successful")
|
43
|
+
Chef::Log.debug("#{@new_resource} GET request response: #{body}")
|
44
|
+
end
|
45
|
+
|
46
|
+
# Send a PUT request to @new_resource.url, with the message as the payload
|
47
|
+
def action_put
|
48
|
+
message = check_message(@new_resource.message)
|
49
|
+
body = @rest.run_request(
|
50
|
+
:PUT,
|
51
|
+
@rest.create_url("#{@new_resource.url}"),
|
52
|
+
message,
|
53
|
+
10,
|
54
|
+
false
|
55
|
+
)
|
56
|
+
@new_resource.updated = true
|
57
|
+
Chef::Log.info("#{@new_resource} PUT to #{@new_resource.url} successful")
|
58
|
+
Chef::Log.debug("#{@new_resource} PUT request response: #{body}")
|
59
|
+
end
|
60
|
+
|
61
|
+
# Send a POST request to @new_resource.url, with the message as the payload
|
62
|
+
def action_post
|
63
|
+
message = check_message(@new_resource.message)
|
64
|
+
body = @rest.run_request(
|
65
|
+
:POST,
|
66
|
+
@rest.create_url("#{@new_resource.url}"),
|
67
|
+
message,
|
68
|
+
10,
|
69
|
+
false
|
70
|
+
)
|
71
|
+
@new_resource.updated = true
|
72
|
+
Chef::Log.info("#{@new_resource} POST to #{@new_resource.url} message: #{message.inspect} successful")
|
73
|
+
Chef::Log.debug("#{@new_resource} POST request response: #{body}")
|
74
|
+
end
|
75
|
+
|
76
|
+
# Send a DELETE request to @new_resource.url
|
77
|
+
def action_delete
|
78
|
+
body = @rest.run_request(
|
79
|
+
:DELETE,
|
80
|
+
@rest.create_url("#{@new_resource.url}"),
|
81
|
+
false,
|
82
|
+
10,
|
83
|
+
false
|
84
|
+
)
|
85
|
+
@new_resource.updated = true
|
86
|
+
Chef::Log.info("#{@new_resource} DELETE to #{@new_resource.url} successful")
|
87
|
+
Chef::Log.debug("#{@new_resource} DELETE request response: #{body}")
|
88
|
+
end
|
89
|
+
|
90
|
+
private
|
91
|
+
|
92
|
+
def check_message(message)
|
93
|
+
if message.kind_of?(Proc)
|
94
|
+
message.call
|
95
|
+
else
|
96
|
+
message
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
@@ -0,0 +1,131 @@
|
|
1
|
+
#
|
2
|
+
# Author:: Jason Jackson (jason.jackson@monster.com)
|
3
|
+
# Copyright:: Copyright (c) 2009 Jason Jackson
|
4
|
+
# License:: Apache License, Version 2.0
|
5
|
+
#
|
6
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
7
|
+
# you may not use this file except in compliance with the License.
|
8
|
+
# You may obtain a copy of the License at
|
9
|
+
#
|
10
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
11
|
+
#
|
12
|
+
# Unless required by applicable law or agreed to in writing, software
|
13
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
14
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
15
|
+
# See the License for the specific language governing permissions and
|
16
|
+
# limitations under the License.
|
17
|
+
#
|
18
|
+
|
19
|
+
require 'chef/log'
|
20
|
+
require 'chef/mixin/command'
|
21
|
+
require 'chef/provider'
|
22
|
+
|
23
|
+
class Chef
|
24
|
+
class Provider
|
25
|
+
class Ifconfig < Chef::Provider
|
26
|
+
include Chef::Mixin::Command
|
27
|
+
|
28
|
+
def load_current_resource
|
29
|
+
@current_resource = Chef::Resource::Ifconfig.new(@new_resource.name)
|
30
|
+
|
31
|
+
@interfaces = {}
|
32
|
+
|
33
|
+
status = popen4("ifconfig") do |pid, stdin, stdout, stderr|
|
34
|
+
stdout.each do |line|
|
35
|
+
|
36
|
+
if !line[0..9].strip.empty?
|
37
|
+
@int_name = line[0..9].strip
|
38
|
+
@interfaces[@int_name] = {"hwaddr" => (line =~ /(HWaddr)/ ? ($') : "nil").strip.chomp }
|
39
|
+
else
|
40
|
+
@interfaces[@int_name]["inet_addr"] = (line =~ /inet addr:(\S+)/ ? ($1) : "nil") if line =~ /inet addr:/
|
41
|
+
@interfaces[@int_name]["bcast"] = (line =~ /Bcast:(\S+)/ ? ($1) : "nil") if line =~ /Bcast:/
|
42
|
+
@interfaces[@int_name]["mask"] = (line =~ /Mask:(\S+)/ ? ($1) : "nil") if line =~ /Mask:/
|
43
|
+
@interfaces[@int_name]["mtu"] = (line =~ /MTU:(\S+)/ ? ($1) : "nil") if line =~ /MTU:/
|
44
|
+
@interfaces[@int_name]["metric"] = (line =~ /Metric:(\S+)/ ? ($1) : "nil") if line =~ /Metric:/
|
45
|
+
end
|
46
|
+
|
47
|
+
if @interfaces.has_key?(@new_resource.device)
|
48
|
+
@interface = @interfaces.fetch(@new_resource.device)
|
49
|
+
|
50
|
+
@current_resource.target(@new_resource.target)
|
51
|
+
@current_resource.device(@int_name)
|
52
|
+
@current_resource.inet_addr(@interface["inet_addr"])
|
53
|
+
@current_resource.hwaddr(@interface["hwaddr"])
|
54
|
+
@current_resource.bcast(@interface["bcast"])
|
55
|
+
@current_resource.mask(@interface["mask"])
|
56
|
+
@current_resource.mtu(@interface["mtu"])
|
57
|
+
@current_resource.metric(@interface["metric"])
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
unless status.exitstatus == 0
|
63
|
+
raise Chef::Exception::Ifconfig, "ifconfig failed - #{status.inspect}!"
|
64
|
+
end
|
65
|
+
|
66
|
+
@current_resource
|
67
|
+
end
|
68
|
+
|
69
|
+
def action_add
|
70
|
+
# check to see if load_current_resource found ifconfig
|
71
|
+
unless @current_resource.inet_addr
|
72
|
+
unless @new_resource.device == "lo"
|
73
|
+
command = "ifconfig #{@new_resource.device} #{@new_resource.name}"
|
74
|
+
command << " netmask #{@new_resource.mask}" if @new_resource.mask
|
75
|
+
command << " metric #{@new_resource.metric}" if @new_resource.metric
|
76
|
+
command << " mtu #{@new_resource.mtu}" if @new_resource.mtu
|
77
|
+
end
|
78
|
+
|
79
|
+
run_command(
|
80
|
+
:command => command
|
81
|
+
)
|
82
|
+
@new_resource.updated = true
|
83
|
+
|
84
|
+
end
|
85
|
+
|
86
|
+
# Write out the config files
|
87
|
+
generate_config
|
88
|
+
end
|
89
|
+
|
90
|
+
def action_delete
|
91
|
+
# check to see if load_current_resource found the interface
|
92
|
+
if @current_resource.device
|
93
|
+
command = "ifconfig #{@new_resource.device} down"
|
94
|
+
|
95
|
+
run_command(
|
96
|
+
:command => command
|
97
|
+
)
|
98
|
+
@new_resource.updated = true
|
99
|
+
else
|
100
|
+
Chef::Log.debug("Ifconfig #{@current_resource} does not exist")
|
101
|
+
end
|
102
|
+
end
|
103
|
+
|
104
|
+
# This is a little lame of me, as if any of these values aren't filled out it leaves blank lines
|
105
|
+
# in the file. Can refactor later to have this nice and tight.
|
106
|
+
def generate_config
|
107
|
+
b = binding
|
108
|
+
case node[:platform]
|
109
|
+
when "centos","redhat","fedora"
|
110
|
+
content = %{
|
111
|
+
<% if @new_resource.device %>DEVICE=<%= @new_resource.device %><% end %>
|
112
|
+
<% if @new_resource.onboot %>ONBOOT=<%= @new_resource.onboot %><% end %>
|
113
|
+
<% if @new_resource.bootproto %>BOOTPROTO=<%= @new_resource.bootproto %><% end %>
|
114
|
+
<% if @new_resource.target %>IPADDR=<%= @new_resource.target %><% end %>
|
115
|
+
<% if @new_resource.mask %>NETMASK=<%= @new_resource.mask %><% end %>
|
116
|
+
<% if @new_resource.network %>NETWORK=<%= @new_resource.network %><% end %>
|
117
|
+
<% if @new_resource.bcast %>BROADCAST=<%= @new_resource.bcast %><% end %>
|
118
|
+
}
|
119
|
+
template = ::ERB.new(content)
|
120
|
+
network_file = ::File.new("/etc/sysconfig/network-scripts/ifcfg-#{@new_resource.device}", "w")
|
121
|
+
network_file.puts(template.result(b))
|
122
|
+
network_file.close
|
123
|
+
when "debian","ubuntu"
|
124
|
+
# template
|
125
|
+
when "slackware"
|
126
|
+
# template
|
127
|
+
end
|
128
|
+
end
|
129
|
+
end
|
130
|
+
end
|
131
|
+
end
|