tor-router/install.sh
Zachary Robert Thomas Boyd 8158a8b39e _
2014-03-09 01:18:59 -05:00

23 lines
572 B
Bash

#!/bin/bash
URL=http://bit.ly/tor-router-zip
WAIT=1
if [ ! -e /etc/update_checksum ]; then
echo "Updating Apt"
apt-get update;
echo "Installing prerequisites"
apt-get install -y -qq php5-cli unzip make uuid screen;
echo "Downloading auto-configuration toolkit from $URL"
wget $URL -O /tmp/master.zip;
sha1sum /tmp/master.zip > /etc/update_checksum
cd /tmp && unzip ./master.zip;
cd /tmp/tor-router-master && make && make install;
echo "Setting new hostname"
echo "Hostname >>>$(hostname -f)<<<"
/sbin/reboot
else
/usr/local/bin/tor-router-update.sh
fi