chef-handler-users 0.0.10 → 0.0.11
Sign up to get free protection for your applications and to get access to all the features.
- data/chef-handler-users.gemspec +1 -1
- data/lib/chef-handler-users.rb +4 -2
- metadata +1 -1
data/chef-handler-users.gemspec
CHANGED
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.name = "chef-handler-users"
|
6
|
-
gem.version = "0.0.
|
6
|
+
gem.version = "0.0.11"
|
7
7
|
gem.authors = ["Heavy Water Operations, LLC. (OR)"]
|
8
8
|
gem.email = ["ops@hw-ops.com"]
|
9
9
|
gem.homepage = "http://github.com/heavywater/chef-handler-users"
|
data/lib/chef-handler-users.rb
CHANGED
@@ -38,13 +38,15 @@ class Chef::Handler::Users < Chef::Handler
|
|
38
38
|
end
|
39
39
|
|
40
40
|
def report
|
41
|
+
updated_users = []
|
41
42
|
updated_users = run_status.updated_resources.find_all do |resource|
|
43
|
+
Chef::Log.info "Checking resource #{resource.name} #{resource.resource_name}"
|
42
44
|
resource.resource_name == "user"
|
43
45
|
end
|
44
46
|
|
45
|
-
return if updated_users.
|
47
|
+
return if updated_users.empty?
|
46
48
|
|
47
|
-
subject = "Chef run on #{node.name} at #{Time.now
|
49
|
+
subject = "Chef run on #{node.name} at #{Time.now} resulted in change of #{updated_users.length} users"
|
48
50
|
message = generate_email_body(updated_users)
|
49
51
|
|
50
52
|
Chef::Log.info "Users handler detected #{updated_users.length} changes, sending summary email to #{@config[:to_address]}"
|