summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-11-15 19:43:15 -0800
committerTim Smith <tsmith@chef.io>2018-11-15 19:43:15 -0800
commit6f8f9c3241929032c1c62fc9c279879f49a185ab (patch)
tree6554436b5be829d286a5ee100c04df3c72119214
parent214738a95ed0e988def1f65dbbd7f42f685a3c76 (diff)
downloadchef-6f8f9c3241929032c1c62fc9c279879f49a185ab.tar.gz
Remove service_name property that's already part of service
No need to define this twice Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/resource/windows_service.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/chef/resource/windows_service.rb b/lib/chef/resource/windows_service.rb
index a3d48c109a..14dd5e1520 100644
--- a/lib/chef/resource/windows_service.rb
+++ b/lib/chef/resource/windows_service.rb
@@ -41,10 +41,6 @@ class Chef
allowed_actions :configure_startup, :create, :delete, :configure
- property :service_name, String,
- description: "The name of the service.",
- name_property: true, identity: true
-
# The display name to be used by user interface programs to identify the
# service. This string has a maximum length of 256 characters.
property :display_name, String, regex: /^.{1,256}$/,