Compare commits

..

3 Commits

Author SHA1 Message Date
tteckster ed674aaedd
Update pialert.sh
tweak
2023-09-16 15:24:18 -04:00
tteckster c68e8e69e0
Update pialert-install.sh
switch to "git clone" installation
2023-09-16 13:54:54 -04:00
tteckster 6c4a48dd65
Update pialert-install.sh
code refactoring
2023-09-16 11:42:03 -04:00
2 changed files with 16 additions and 29 deletions

View File

@ -52,11 +52,8 @@ function default_settings() {
function update_script() { function update_script() {
header_info header_info
if [[ ! -d /var ]]; then msg_error "No ${APP} Installation Found!"; exit; fi if [[ ! -d /opt/pialert ]]; then msg_error "No ${APP} Installation Found!"; exit; fi
msg_info "Updating $APP LXC" msg_error "There is currently no update path available."
apt-get update &>/dev/null
apt-get -y upgrade &>/dev/null
msg_ok "Updated $APP LXC"
exit exit
} }

View File

@ -18,6 +18,7 @@ $STD apt-get -y install \
sudo \ sudo \
mc \ mc \
curl \ curl \
git \
apt-utils \ apt-utils \
lighttpd \ lighttpd \
sqlite3 \ sqlite3 \
@ -52,33 +53,22 @@ $STD pip3 install fritzconnection
$STD pip3 install cryptography $STD pip3 install cryptography
msg_ok "Installed Python Dependencies" msg_ok "Installed Python Dependencies"
msg_info "Installing Pi.Alert" msg_info "Installing Pi.Alert (Patience)"
curl -sL https://github.com/leiweibau/Pi.Alert/raw/main/tar/pialert_latest.tar | tar xvf - -C /opt >/dev/null 2>&1 git clone -q https://github.com/leiweibau/Pi.Alert.git /opt/pialert
mkdir -p /opt/pialert/front/reports
rm /var/www/html/index.html rm -rf /var/www/html/index.html /opt/pialert/{docs,install,tar}
mv /var/www/html/index.lighttpd.html /var/www/html/index.lighttpd.html.old mv /var/www/html/index.lighttpd.html /var/www/html/index.lighttpd.html.old
ln -s /opt/pialert/install/index.html /var/www/html/index.html ln -s /opt/pialert/install/index.html /var/www/html/index.html
ln -s /opt/pialert/front /var/www/html/pialert ln -s /opt/pialert/front /var/www/html/pialert
chmod go+x /opt/pialert chmod go+x /opt/pialert /opt/pialert/back/shoutrrr/x86/shoutrrr
chgrp -R www-data /opt/pialert/db chgrp -R www-data /opt/pialert/db /opt/pialert/front/reports /opt/pialert/config /opt/pialert/config/pialert.conf
chmod -R 775 /opt/pialert/db chmod -R 775 /opt/pialert/db /opt/pialert/db/temp /opt/pialert/config /opt/pialert/front/reports
chmod -R 775 /opt/pialert/db/temp touch /opt/pialert/log/pialert.vendors.log /opt/pialert/log/pialert.IP.log /opt/pialert/log/pialert.1.log /opt/pialert/log/pialert.cleanup.log /opt/pialert/log/pialert.webservices.log
chgrp www-data /opt/pialert/config src_dir="/opt/pialert/log"
chmod -R 775 /opt/pialert/config dest_dir="/opt/pialert/front/php/server"
chgrp www-data /opt/pialert/config/pialert.conf for file in pialert.vendors.log pialert.IP.log pialert.1.log pialert.cleanup.log pialert.webservices.log; do
chmod -R 775 /opt/pialert/front/reports ln -s "$src_dir/$file" "$dest_dir/$file"
chgrp -R www-data /opt/pialert/front/reports done
chmod +x /opt/pialert/back/shoutrrr/x86/shoutrrr
touch "/opt/pialert/log/pialert.vendors.log"
touch "/opt/pialert/log/pialert.IP.log"
touch "/opt/pialert/log/pialert.1.log"
touch "/opt/pialert/log/pialert.cleanup.log"
touch "/opt/pialert/log/pialert.webservices.log"
ln -s "/opt/pialert/log/pialert.vendors.log" "/opt/pialert/front/php/server/pialert.vendors.log"
ln -s "/opt/pialert/log/pialert.IP.log" "/opt/pialert/front/php/server/pialert.IP.log"
ln -s "/opt/pialert/log/pialert.1.log" "/opt/pialert/front/php/server/pialert.1.log"
ln -s "/opt/pialert/log/pialert.cleanup.log" "/opt/pialert/front/php/server/pialert.cleanup.log"
ln -s "/opt/pialert/log/pialert.webservices.log" "/opt/pialert/front/php/server/pialert.webservices.log"
sed -i 's#PIALERT_PATH\s*=\s*'\''/home/pi/pialert'\''#PIALERT_PATH = '\''/opt/pialert'\''#' /opt/pialert/config/pialert.conf sed -i 's#PIALERT_PATH\s*=\s*'\''/home/pi/pialert'\''#PIALERT_PATH = '\''/opt/pialert'\''#' /opt/pialert/config/pialert.conf
msg_ok "Installed Pi.Alert" msg_ok "Installed Pi.Alert"