Update pialert-install.sh

add three new commands
- "scan" Runs arp-scan
- "permissions" Repair file group permissions
- "sudoers" Create sudoer file for www-data and Pi.Alert user
This commit is contained in:
tteckster 2023-09-17 10:55:33 -04:00 committed by GitHub
parent 0554641b83
commit 1fb4fcf84e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -70,6 +70,12 @@ for file in pialert.vendors.log pialert.IP.log pialert.1.log pialert.cleanup.log
ln -s "$src_dir/$file" "$dest_dir/$file"
done
sed -i 's#PIALERT_PATH\s*=\s*'\''/home/pi/pialert'\''#PIALERT_PATH = '\''/opt/pialert'\''#' /opt/pialert/config/pialert.conf
echo "python3 /opt/pialert/back/pialert.py 1" >/usr/bin/scan
chmod +x /usr/bin/scan
echo "/opt/pialert/back/pialert-cli set_permissions --lxc" >/usr/bin/permissions
chmod +x /usr/bin/permissions
echo "/opt/pialert/back/pialert-cli set_sudoers --lxc" >/usr/bin/sudoers
chmod +x /usr/bin/sudoers
msg_ok "Installed Pi.Alert"
msg_info "Start Pi.Alert Scan (Patience)"