2011-05-31 22:05:48 +02:00
|
|
|
#!/bin/bash
|
2011-05-31 18:45:27 +02:00
|
|
|
|
2011-05-31 22:05:48 +02:00
|
|
|
#Cause bash script to exit if any of the installers
|
|
|
|
#return with a non-zero return value.
|
|
|
|
set -e
|
|
|
|
|
|
|
|
echo -e "\n******************************** Install Begin *********************************";
|
|
|
|
|
|
|
|
php airtime-install.php $@
|
2011-05-31 18:45:27 +02:00
|
|
|
|
|
|
|
echo "*** Pypo Installation ***"
|
2011-05-31 22:05:48 +02:00
|
|
|
#python ".__DIR__."/../python_apps/pypo/install/pypo-install.py
|
|
|
|
python ../python_apps/pypo/install/pypo-install.py
|
2011-05-31 18:45:27 +02:00
|
|
|
|
2011-05-31 22:05:48 +02:00
|
|
|
#echo "*** Recorder Installation ***"
|
|
|
|
#python ".__DIR__."/../python_apps/show-recorder/install/recorder-install.py
|
|
|
|
#python ../python_apps/show-recorder/install/recorder-install.py
|
2011-05-31 18:45:27 +02:00
|
|
|
|
2011-06-01 00:55:22 +02:00
|
|
|
sleep 4
|
|
|
|
|
2011-05-31 18:45:27 +02:00
|
|
|
airtime-check-system
|
2011-05-31 22:05:48 +02:00
|
|
|
|
|
|
|
echo -e "\n******************************* Install Complete *******************************";
|