more tools

This commit is contained in:
2025-08-29 09:40:20 +03:00
parent 4346b838ed
commit 4448764bca
15 changed files with 513 additions and 24 deletions

18
login-mailer/uninstall.sh Normal file
View File

@@ -0,0 +1,18 @@
#!/bin/bash
systemctl stop login-mailer.timer
systemctl disable login-mailer.timer
if [ -f /usr/local/bin/login-mailer ]; then
rm /usr/local/bin/login-mailer
fi
if [ -f /etc/systemd/system/login-mailer.service ]; then
rm /etc/systemd/system/login-mailer.service
fi
if [ -f /etc/systemd/system/login-mailer.timer ]; then
rm /etc/systemd/system/login-mailer.timer
fi
systemctl daemon-reload