CC-2758: Make airtime-install script Debian/Ubuntu compatible

-initial commit
This commit is contained in:
Martin Konecny 2011-10-27 14:01:59 -04:00
parent d26e410799
commit 8cafc52cad
16 changed files with 491 additions and 15 deletions

View file

@ -22,4 +22,5 @@ except Exception, e:
print 'Error loading config file: ', e
sys.exit(1)
#copy python files
copy_dir("%s/../../api_clients"%current_script_dir, config["bin_dir"])

View file

@ -0,0 +1,19 @@
#!/bin/bash -e
#-e Causes bash script to exit if any of the installers
#return with a non-zero return value.
if [ `whoami` != 'root' ]; then
echo "Please run as root user."
exit 1
fi
# Absolute path to this script, e.g. /home/user/bin/foo.sh
SCRIPT=`readlink -f $0`
# Absolute path this script is in, thus /home/user/bin
SCRIPTPATH=`dirname $SCRIPT`
BIN_DIR=/usr/lib/airtime/api_clients
#copy api_client files
cp -R $SCRIPTPATH/../../api_clients $BIN_DIR