9 lines
137 B
Bash
Executable File
9 lines
137 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source ./common.sh
|
|
|
|
python manage.py restart $1 $2 ${PROJECT_NAME}
|
|
|
|
ps -ef|grep ${PROJECT_NAME} > bin/ps.log
|
|
echo 'success'
|