sensu-plugins-systemd 0.0.5 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5054cf25009dcc5c81ce4b062cbe16a432322731
4
- data.tar.gz: 4c7aef5a219f0d26e4f9d22d8b08ec15b5b98d57
3
+ metadata.gz: 0af69cab631a07b041e54efe3281ad84907c227e
4
+ data.tar.gz: ffba0c93d6d7b6d5f90049f86fe70eaa61a6488c
5
5
  SHA512:
6
- metadata.gz: 1fba51d49bf44dba27fdc70b42892506c03e755808744e0a4d62337375252a7ff42f5db4bf4dd3d574e0606d039948d9d0eccb00aa54009a9163f0dda38fc35a
7
- data.tar.gz: eff54570358b56ad5d61e4ecdb83109419935007cd1134bad961387b818ad587a146f0300b3b098f0b5a7d35394eae469f0ec166b76a0991ccf7048dac27b4d1
6
+ metadata.gz: 4e3f1e1b8cf5279d62642bc180ceb207a10af32a79f8c235489ec65b0c7a42f90f719084de7bc9c24ab592e69439cb7ee83a292b0f8b1bbf4cb6f5c7e8887a6e
7
+ data.tar.gz: e9db04abffbb5f1e0b8fbad6b52c13c8052e52f110e8b5216fff7320a8070a1f1aa862439b2ae65149a2ad25e5025d32dac6bd10b0f2a4407e492ea896baed48
@@ -0,0 +1,37 @@
1
+ # Change Log
2
+ This CHANGELOG follows the format listed at [Our CHANGELOG Guidelines ](https://github.com/sensu-plugins/community/blob/master/HOW_WE_CHANGELOG.md).
3
+ Which is based on [Keep A Changelog](http://keepachangelog.com/)
4
+
5
+ This CHANGELOG follows the format listed at [Keep A Changelog](http://keepachangelog.com/)
6
+
7
+ ## [Unreleased]
8
+
9
+ ## [0.1.0] - 2017-09-10
10
+ ### Added
11
+ - missing changelog entries (@majormoses)
12
+ - standard PR templates (@majormoses)
13
+
14
+ ### Changed
15
+ - update the location of our changelog format (@majormoses)
16
+ - updated with standard `.travis.yml` and updated secret for deploy to rubygems (@majormoses)
17
+ - updated with standard `.rubocop.yml` (@majormoses)
18
+ - updated with standard `Rakefile` (@majormoses)
19
+
20
+
21
+ ## [0.0.5]
22
+ ### Changed
23
+ - bumped version of gem
24
+
25
+ ## [0.0.4]
26
+ ### Fixed
27
+ - check-systemd.rb: critical alert when requested service does not exist (@jgnagy)
28
+
29
+
30
+ ## 0.0.1 - 2016-04-26
31
+ ### Added
32
+ - initial release
33
+
34
+ [Unreleased]: https://github.com/sensu-plugins/sensu-plugins-systemd/compare/0.1.0...HEAD
35
+ [0.1.0]:https://github.com/sensu-plugins/sensu-plugins-systemd/compare/v0.0.5...0.1.0
36
+ [0.0.5]: https://github.com/sensu-plugins/sensu-plugins-systemd/compare/v0.0.4...v0.0.5
37
+ [0.0.4]: https://github.com/sensu-plugins/sensu-plugins-systemd/compare/v0.0.3...v0.0.4
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,22 @@
1
+ ## Sensu-Plugins-systemd
2
+ [![Build Status](https://travis-ci.org/sensu-plugins/sensu-plugins-systemd.svg?branch=master)](https://travis-ci.org/sensu-plugins/sensu-plugins-systemd)
3
+ [![Gem Version](https://badge.fury.io/rb/sensu-plugins-systemd.svg)](http://badge.fury.io/rb/sensu-plugins-systemd)
4
+ [![Code Climate](https://codeclimate.com/github/sensu-plugins/sensu-plugins-systemd/badges/gpa.svg)](https://codeclimate.com/github/sensu-plugins/sensu-plugins-systemd)
5
+ ## Functionality
6
+ This provides functionality to check if services are running for systemd.
7
+
8
+ ## Files
9
+ - bin/check-systemd.rb
10
+
11
+ ## Usage
12
+ Pass services as a comma delimited -s option
13
+
14
+ ```
15
+ check-systemd.rb -s SERVICE1.service,SERVICE2.service
16
+ ```
17
+
18
+ ## Installation
19
+
20
+ [Installation and Setup](http://sensu-plugins.io/docs/installation_instructions.html)
21
+
22
+ ## Notes
@@ -1,8 +1,8 @@
1
1
  module SensuPluginsSystemd
2
2
  module Version
3
3
  MAJOR = 0
4
- MINOR = 0
5
- PATCH = 5
4
+ MINOR = 1
5
+ PATCH = 0
6
6
 
7
7
  VER_STRING = [MAJOR, MINOR, PATCH].compact.join('.')
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sensu-plugins-systemd
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - mickfeech and contributors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-04-26 00:00:00.000000000 Z
11
+ date: 2017-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sensu-plugin
@@ -154,11 +154,15 @@ description: Plugins to provide functionality to check systemd services for Sens
154
154
  a monitoring framework
155
155
  email:
156
156
  - cmcfee@kent.edu
157
+ - "<sensu-users@googlegroups.com>"
157
158
  executables:
158
159
  - check-systemd.rb
159
160
  extensions: []
160
161
  extra_rdoc_files: []
161
162
  files:
163
+ - CHANGELOG.md
164
+ - LICENSE
165
+ - README.md
162
166
  - bin/check-systemd.rb
163
167
  - lib/sensu-plugins-systemd.rb
164
168
  - lib/sensu-plugins-systemd/version.rb
@@ -182,7 +186,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
182
186
  version: '0'
183
187
  requirements: []
184
188
  rubyforge_project:
185
- rubygems_version: 2.4.5
189
+ rubygems_version: 2.6.13
186
190
  signing_key:
187
191
  specification_version: 4
188
192
  summary: This provides functionality to check systemd services.