diff options
author | Jason Barnett <jason.w.barnett@gmail.com> | 2018-01-27 07:52:54 -0800 |
---|---|---|
committer | Jason Barnett <jason.w.barnett@gmail.com> | 2018-01-27 07:53:43 -0800 |
commit | 06d7c8c54d6134da701d484d2f59a299f67ee9de (patch) | |
tree | 39e16cf0387b6eeb0693439fdd3d848fc9fd0e19 /lib | |
parent | 2cafe1e6ee1465a496278fa95d15842c12c16066 (diff) | |
download | chef-06d7c8c54d6134da701d484d2f59a299f67ee9de.tar.gz |
Add description property to converge configure action
Developer's Certificate of Origin 1.1
By making a contribution to this project, I certify that:
(a) The contribution was created in whole or in part by me and I
have the right to submit it under the open source license
indicated in the file; or
(b) The contribution is based upon previous work that, to the
best of my knowledge, is covered under an appropriate open
source license and I have the right under that license to
submit that work with modifications, whether created in whole
or in part by me, under the same open source license (unless
I am permitted to submit under a different license), as
Indicated in the file; or
(c) The contribution was provided directly to me by some other
person who certified (a), (b) or (c) and I have not modified
it.
(d) I understand and agree that this project and the contribution
are public and that a record of the contribution (including
all personal information I submit with it, including my
sign-off) is maintained indefinitely and may be redistributed
consistent with this project or the open source license(s)
involved.
Signed-off-by: Jason Barnett <jason.w.barnett@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/chef/provider/service/windows.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/provider/service/windows.rb b/lib/chef/provider/service/windows.rb index ea2b964023..d370ecff51 100644 --- a/lib/chef/provider/service/windows.rb +++ b/lib/chef/provider/service/windows.rb @@ -229,7 +229,7 @@ class Chef::Provider::Service::Windows < Chef::Provider::Service converge_if_changed :service_type, :startup_type, :error_control, :binary_path_name, :load_order_group, :dependencies, - :run_as_user, :display_name do + :run_as_user, :display_name, :description do Win32::Service.configure(windows_service_config(:configure)) end |