-
Notifications
You must be signed in to change notification settings - Fork 290
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Investigate getting sensu_gem working on windows #700
Comments
|
Plan to grab this one on Tuesday. |
|
Closing this issue, sensu_gem works fine with diff --git a/tests/sensu-client-windows.pp b/tests/sensu-client-windows.pp
index d7b4441..41ac2d8 100644
--- a/tests/sensu-client-windows.pp
+++ b/tests/sensu-client-windows.pp
@@ -1,9 +1,17 @@
# Note: Check http://repositories.sensuapp.org/msi/ for the latest version.
-class { '::sensu':
- version => '0.29.0-11',
- rabbitmq_password => 'correct-horse-battery-staple',
- rabbitmq_host => '192.168.56.10',
- rabbitmq_vhost => '/sensu',
- subscriptions => 'all',
- client_address => $facts['networking']['ip'],
+node default {
+ class { '::sensu':
+ version => '0.29.0-11',
+ rabbitmq_password => 'correct-horse-battery-staple',
+ rabbitmq_host => '192.168.56.10',
+ rabbitmq_vhost => '/sensu',
+ subscriptions => 'all',
+ client_address => $facts['networking']['ip'],
+ }
+ # (#700) Install a plugin using sensu_gem package provider on windows.
+ sensu::plugin { 'sensu-plugins-windows':
+ type => 'package',
+ pkg_version => 'installed',
+ pkg_provider => 'sensu_gem',
+ }
}Results: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This task came up in the discussion of #699 (review)
Moving it here for prioritization and decision. The major issues with windows brought up in #646 have been address in #699 so it's unclear if getting sensu_gem working on windows is necessary or not.
The text was updated successfully, but these errors were encountered: