16 lines
415 B
Bash
16 lines
415 B
Bash
#!/bin/bash
|
|
|
|
if [ ! -f login-mailer.service ]; then
|
|
echo "have you copied and edited login-mailer.service.template?"
|
|
exit 1
|
|
fi
|
|
|
|
cp ./login-mailer.sh /usr/local/bin/login-mailer
|
|
cp ./login-mailer.service /etc/systemd/system/login-mailer.service
|
|
cp ./login-mailer.timer /etc/systemd/system/login-mailer.timer
|
|
|
|
systemctl daemon-reload
|
|
|
|
systemctl enable --now login-mailer.timer
|
|
systemctl status login-mailer.timer
|