chef-handler-users 0.0.6 → 0.0.7
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 +2 -0
- 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.7"
|
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
@@ -35,6 +35,8 @@ class Chef::Handler::Users < Chef::Handler
|
|
35
35
|
resource.resource_name == "user"
|
36
36
|
end
|
37
37
|
|
38
|
+
return if updated_users.nil? || updated_users.empty?
|
39
|
+
|
38
40
|
subject = "Chef run on #{node.name} at #{Time.now.asctime} resulted in change of #{updated_users.length} users"
|
39
41
|
message = generate_email_body(updated_users)
|
40
42
|
|