Compare commits

..

2 Commits

Author SHA1 Message Date
David Dollar
d0f5b2412c 0.7.4 2010-09-17 09:30:20 -04:00
David Dollar
15ab54bc18 include files from export in the gem 2010-09-17 09:30:09 -04:00
3 changed files with 2 additions and 4 deletions

View File

@@ -3,4 +3,4 @@ stop on stopping <%= app %>-<%= process.name %>
respawn
chdir <%= engine.directory %>
exec su - <%= user %> -c 'export PORT=<%= port %>; <%= process.command %> >> <%= log_root %>/<%=process.name%>-<%=num%>.log 2>&1'
exec su <%= user %> -c "PORT=<%= port %> <%= process.command %> >> <%= log_root %>/<%=process.name%>-<%=num%>.log 2>&1"

View File

@@ -1,6 +1,6 @@
module Foreman
VERSION = "0.7.5"
VERSION = "0.7.4"
class AppDoesNotExist < Exception; end

View File

@@ -97,7 +97,6 @@ private ######################################################################
rescue PTY::ChildExited, Interrupt
info "process exiting", process
end
Process.waitall
end
end
@@ -107,7 +106,6 @@ private ######################################################################
info "killing #{process.name} in pid #{pid}"
Process.kill(signal, pid)
end
Process.waitall
exit 0
end