This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
nezha-nz-talon/tools/afterremove.sh
2022-03-31 10:44:28 +08:00

21 lines
405 B
Bash

#!/bin/sh
if [ 0 -eq $1 ];then
echo 'start remove nz-talon module from disk...'
systemctl stop nz-talon.service
systemctl stop promtail.service
rm -rf /opt/nezha/nz-talon
rm -rf /opt/nezha/promtail
systemctl disable nz-talon.service
systemctl disable promtail.service
rm -rf /usr/lib/systemd/system/{nz-talon.service,promtail.service}
systemctl daemon-reload
echo 'uninstall success!'
fi