Changeset - b6b3533ad63c
[Not reviewed]
default
1 0 1
Marcin Kuzminski - 16 years ago 2010-02-20 17:55:59

Changed the managing script
1 file changed with 1 insertions and 1 deletions:
hg_app
1
1
0 comments (0 inline, 0 general)
hg_app
Show inline comments
 
file renamed from pylons-manage to hg_app
 
#!/bin/sh -e
 
### BEGIN INIT INFO
 
# Provides:         pylons-manage          
 
# Required-Start:    $all
 
# Required-Stop:     $all
 
# Default-Start:     2 3 4 5
 
# Default-Stop:      0 1 6
 
# Short-Description: starts pylons app
 
# Description:       starts pylons app
 
### END INIT INFO
 

	
 
project_name=hg_app
 
conf_name=development.ini
 
conf_name=production.ini
 
project_path=/home/marcink/python_workspace/$project_name
 
virt_python=/home/marcink/virt_python
 

	
 
cd $project_path
 
case "$1" in
 
  start)
 
    $virt_python/bin/paster serve --daemon --pid-file=$project_path/$project_name.pid --log-file=$project_path/$project_name.log $project_path/$conf_name start
 
    ;;
 
  stop)
 
    $virt_python/bin/paster serve --daemon --pid-file=$project_path/$project_name.pid --log-file=$project_path/$project_namete.log $project_path/$conf_name stop
 
    ;;
 
  restart)
0 comments (0 inline, 0 general)