xinuc-sermont 0.3.0 → 0.3.1
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.
- data/README.rdoc +16 -0
- data/VERSION.yml +1 -1
- data/sermont.gemspec +2 -2
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -43,6 +43,22 @@ install xinuc-sermont from github.com
|
|
43
43
|
|
44
44
|
sudo gem install xinuc-sermont --source=http://gems.github.com
|
45
45
|
|
46
|
+
Run
|
47
|
+
|
48
|
+
sermont --setup
|
49
|
+
|
50
|
+
it will copy .sermont.yml to your home directory. Edit this file according to
|
51
|
+
your servers.
|
52
|
+
|
53
|
+
---
|
54
|
+
- servername: Your server name
|
55
|
+
ip: 127.0.0.1
|
56
|
+
services:
|
57
|
+
ftp: 21
|
58
|
+
http: 80
|
59
|
+
|
60
|
+
Now, you can run <code>sermont</code> to monitor your servers.
|
61
|
+
|
46
62
|
== Add Your Own Handler
|
47
63
|
|
48
64
|
If you have any services that can't be checked by simply open the port, you can
|
data/VERSION.yml
CHANGED
data/sermont.gemspec
CHANGED
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{sermont}
|
5
|
-
s.version = "0.3.
|
5
|
+
s.version = "0.3.1"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Nugroho Herucahyono"]
|
9
|
-
s.date = %q{2009-06-
|
9
|
+
s.date = %q{2009-06-10}
|
10
10
|
s.default_executable = %q{sermont}
|
11
11
|
s.description = %q{Sermont is a command line based script to monitor your servers.}
|
12
12
|
s.email = %q{xinuc@xinuc.org}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xinuc-sermont
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nugroho Herucahyono
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-06-
|
12
|
+
date: 2009-06-10 00:00:00 -07:00
|
13
13
|
default_executable: sermont
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|