Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a5e094353c | ||
|
|
12720b4c12 | ||
|
|
1c732a4658 |
@@ -1,7 +1,7 @@
|
||||
PATH
|
||||
remote: .
|
||||
specs:
|
||||
foreman (0.26.0)
|
||||
foreman (0.26.1)
|
||||
term-ansicolor (~> 1.0.5)
|
||||
thor (>= 0.13.6)
|
||||
|
||||
|
||||
@@ -42,8 +42,9 @@ class Foreman::Engine
|
||||
end
|
||||
|
||||
def execute(name)
|
||||
error "no such process: #{name}" unless procfile[name]
|
||||
fork procfile[name]
|
||||
error "no such process: #{name}" unless process = procfile[name]
|
||||
process.color = next_color
|
||||
fork process
|
||||
|
||||
trap("TERM") { puts "SIGTERM received"; terminate_gracefully }
|
||||
trap("INT") { puts "SIGINT received"; terminate_gracefully }
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
module Foreman
|
||||
|
||||
VERSION = "0.26.0"
|
||||
VERSION = "0.26.1"
|
||||
|
||||
end
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
.\" generated with Ronn/v0.7.3
|
||||
.\" http://github.com/rtomayko/ronn/tree/0.7.3
|
||||
.
|
||||
.TH "FOREMAN" "1" "November 2011" "Foreman 0.25.0" "Foreman Manual"
|
||||
.TH "FOREMAN" "1" "November 2011" "Foreman 0.26.0" "Foreman Manual"
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBforeman\fR \- manage Procfile\-based applications
|
||||
@@ -85,6 +85,9 @@ bluepill
|
||||
inittab
|
||||
.
|
||||
.IP "\(bu" 4
|
||||
runit
|
||||
.
|
||||
.IP "\(bu" 4
|
||||
upstart
|
||||
.
|
||||
.IP "" 0
|
||||
|
||||
@@ -83,6 +83,8 @@ foreman currently supports the following output formats:
|
||||
|
||||
* inittab
|
||||
|
||||
* runit
|
||||
|
||||
* upstart
|
||||
|
||||
## INITTAB EXPORT
|
||||
|
||||
Reference in New Issue
Block a user