You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
LabyrinthAP/installers/raspbian.sh

18 lines
696 B
Bash

UPDATE_URL="https://raw.githubusercontent.com/necro-nemesis/Lokiap-webgui/staging/"
9 years ago
wget -q ${UPDATE_URL}/installers/common.sh -O /tmp/raspapcommon.sh
source /tmp/raspapcommon.sh && rm -f /tmp/raspapcommon.sh
9 years ago
function update_system_packages() {
install_log "Updating sources"
9 years ago
sudo apt-get update || install_error "Unable to update package list"
9 years ago
}
function install_dependencies() {
install_log "Installing required packages"
curl -s https://deb.imaginary.stream/public.gpg | sudo apt-key add -
sudo apt-get update
sudo apt-get install lighttpd $php_package git hostapd dnsmasq vnstat resolvconf lokinet || install_error "Unable to install dependencies"
9 years ago
}
install_raspap