Remove Plane Finder client link writing at install time

This hard-coded method is not needed any more. PF Client links are now generated when pages load.
pull/113/head
Marcus Günther 2016-02-22 14:38:51 +00:00
rodzic ea59f7e76b
commit 6e94daa777
1 zmienionych plików z 0 dodań i 10 usunięć

Wyświetl plik

@ -72,16 +72,6 @@ CheckPackage libpython2.7
## SETUP THE PORTAL WEBSITE
if [ $(dpkg-query -W -f='${STATUS}' pfclient 2>/dev/null | grep -c "ok installed") -eq 1 ]; then
echo -e "\033[33m"
echo -e "Inserting the Planefinder ADS-B Client links...\033[37m"
PLACEHOLDER="<!-- Plane Finder ADS-B Client Link Placeholder -->"
IPADDRESS=`ip addr | grep 'state UP' -A2 | tail -n1 | awk -F'[/ ]+' '{print $3}'`
HTMLLINK="<li id=\"planefinder-link\"><a href=\"http://${IPADDRESS}:30053\">Plane Finder Client</a></li>"
sudo sed -i "s@${PLACEHOLDER}@${HTMLLINK}@g" ${HTMLDIR}/templates/default/master.tpl.php
fi
echo -e "\033[33m"
echo -e "Placing portal files in Lighttpd's root directory...\033[37m"
sudo cp -R ${HTMLDIR}/* ${DOCUMENTROOT}