diff options
author | Tim Smith <tsmith84@gmail.com> | 2021-01-22 19:54:12 -0800 |
---|---|---|
committer | Tim Smith <tsmith84@gmail.com> | 2021-01-26 08:53:11 -0800 |
commit | a12f9587eb10d5ea910f5b803815f59ffe53d0ed (patch) | |
tree | 584135f7c5fb85545e62f461b841ef3f1d4927ca /spec/spec_helper.rb | |
parent | df6a10467dfeff3c8d46a24d688597e690b38cd4 (diff) | |
download | chef-service_manager.tar.gz |
Chef 17: Remove windows service manager capabilitiesservice_manager
This is something we've recommended against using for many years now. Windows users should instead run Chef Infra Client using a Scheduled Task which is far more reliable and has the added benefit of requiring zero CPU or memory while not running.
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'spec/spec_helper.rb')
-rw-r--r-- | spec/spec_helper.rb | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 52f17788bb..95a4c62a77 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -159,12 +159,7 @@ RSpec.configure do |config| config.filter_run_excluding windows_powershell_no_dsc_only: true if windows_powershell_dsc? config.filter_run_excluding windows_domain_joined_only: true unless windows_domain_joined? config.filter_run_excluding windows_not_domain_joined_only: true if windows_domain_joined? - # We think this line was causing rspec tests to not run on the Jenkins windows - # testers. If we ever fix it we should restore it. - # config.filter_run_excluding :windows_service_requires_assign_token => true if !STDOUT.isatty && !windows_user_right?("SeAssignPrimaryTokenPrivilege") - config.filter_run_excluding windows_service_requires_assign_token: true config.filter_run_excluding solaris_only: true unless solaris? - config.filter_run_excluding system_windows_service_gem_only: true unless system_windows_service_gem? config.filter_run_excluding unix_only: true unless unix? config.filter_run_excluding linux_only: true unless linux? config.filter_run_excluding aix_only: true unless aix? |