1 2 3 4 5 6 7 8 9 10 11 12 13
post_install() { systemctl enable --now whoogle echo "" echo "Enabled the Whoogle systemd service." echo "Visit localhost:5000 to start searching!" echo "" } post_upgrade() { systemctl daemon-reload systemctl restart whoogle echo "Restarted Whoogle systemd service." }