Skip to content
Snippets Groups Projects
Commit 60e24314 authored by Bob Mottram's avatar Bob Mottram
Browse files

Only update if necessary

parent 16316ede
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,7 @@ ZERONET_PORT=15441
TRACKER_PORT=6969
MY_USERNAME=$USER
ZERONET_DIR=/home/$MY_USERNAME/zeronet
UPDATED="no"
function install_zeronet_blog {
if [ ! -f /home/$MY_USERNAME/README ]; then
......@@ -192,6 +193,11 @@ function install_web_server {
return
fi
if [[ $UPDATED == "no" ]]; then
sudo apt-get update
UPDATED="yes"
fi
sudo apt-get -y remove --purge apache2
if [ -d /etc/apache2 ]; then
sudo rm -rf /etc/apache2
......@@ -206,19 +212,25 @@ function install_web_server {
}
function install_zeronet {
if [ -d $ZERONET_DIR ]; then
return
fi
sudo apt-get -y install python python-msgpack python-gevent
sudo apt-get -y install python-pip bittornado
sudo pip install msgpack-python --upgrade
git clone $ZERONET_REPO $ZERONET_DIR
if [ ! -d $ZERONET_DIR ]; then
exit 56823
fi
cd $ZERONET_DIR
git checkout bashrc/bootstrap-file
if [ -d $ZERONET_DIR ]; then
return
fi
if [[ $UPDATED == "no" ]]; then
sudo apt-get update
UPDATED="yes"
fi
sudo apt-get -y install python python-msgpack python-gevent
sudo apt-get -y install python-pip bittornado
sudo pip install msgpack-python --upgrade
git clone $ZERONET_REPO $ZERONET_DIR
if [ ! -d $ZERONET_DIR ]; then
exit 56823
fi
cd $ZERONET_DIR
git checkout bashrc/bootstrap-file
}
if [ -f /var/lib/batman ]; then
......@@ -233,7 +245,6 @@ fi
if [[ $SERVER_INSTALLATION == "no" ]]; then
if [ ! -f /tmp/meshtype ]; then
sudo apt-get update
install_web_server
install_zeronet
install_zeronet_blog
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment