cc-2055: switch to init.d

-disable daemon from starting twice
This commit is contained in:
martin 2011-05-30 18:55:52 -04:00
parent b0befdff20
commit 5803635d50
7 changed files with 91 additions and 84 deletions

17
python_apps/pypo/airtime-pypo Executable file
View file

@ -0,0 +1,17 @@
#!/bin/sh
pypo_user="pypo"
# Location of pypo_cli.py Python script
pypo_path="/usr/lib/airtime/pypo/bin/"
api_client_path="/usr/lib/airtime/pypo/"
pypo_script="pypo-cli.py"
cd ${pypo_path}
exec 2>&1
export HOME="/var/tmp/airtime/pypo/"
export PYTHONPATH=${api_client_path}:$PYTHONPATH
# Note the -u when calling python! we need it to get unbuffered binary stdout and stderr
exec python -u ${pypo_path}${pypo_script}
# EOF