bluepill 0.0.52 → 0.0.53
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +2 -3
- data/lib/bluepill.rb +2 -0
- data/lib/bluepill/application.rb +1 -0
- data/lib/bluepill/version.rb +1 -1
- metadata +4 -4
data/README.md
CHANGED
@@ -5,14 +5,14 @@ Bluepill is a simple process monitoring tool written in Ruby.
|
|
5
5
|
It's hosted on [rubygems.org][rubygems].
|
6
6
|
|
7
7
|
sudo gem install bluepill
|
8
|
-
|
8
|
+
|
9
9
|
In order to take advantage of logging with syslog, you also need to setup your syslog to log the local6 facility. Edit the appropriate config file for your syslogger (/etc/syslog.conf for syslog) and add a line for local6:
|
10
10
|
|
11
11
|
local6.* /var/log/bluepill.log
|
12
12
|
|
13
13
|
You'll also want to add _/var/log/bluepill.log_ to _/etc/logrotate.d/syslog_ so that it gets rotated.
|
14
14
|
|
15
|
-
Lastly, create the _/var/bluepill_ directory for bluepill to store its pid and sock files.
|
15
|
+
Lastly, create the _/var/run/bluepill_ directory for bluepill to store its pid and sock files.
|
16
16
|
|
17
17
|
## Usage
|
18
18
|
### Config
|
@@ -303,4 +303,3 @@ Mailing List: [http://groups.google.com/group/bluepill-rb](http://groups.google.
|
|
303
303
|
|
304
304
|
|
305
305
|
[rubygems]: http://rubygems.org/gems/bluepill
|
306
|
-
|
data/lib/bluepill.rb
CHANGED
data/lib/bluepill/application.rb
CHANGED
data/lib/bluepill/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bluepill
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 117
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 53
|
10
|
+
version: 0.0.53
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Arya Asemanfar
|
@@ -17,7 +17,7 @@ autorequire:
|
|
17
17
|
bindir: bin
|
18
18
|
cert_chain: []
|
19
19
|
|
20
|
-
date:
|
20
|
+
date: 2012-02-03 00:00:00 +04:00
|
21
21
|
default_executable:
|
22
22
|
dependencies:
|
23
23
|
- !ruby/object:Gem::Dependency
|