mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 15:01:05 +01:00
12 lines
230 B
Plaintext
12 lines
230 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
/usr/bin/sendmail -t <<ERRMAIL
|
||
|
To: {{administrator_email}}
|
||
|
From: systemd <{{system_email}}>
|
||
|
Subject: $1
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
|
||
|
$(systemctl status --full "$1")
|
||
|
ERRMAIL
|