12 lines
216 B
Plaintext
12 lines
216 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
/usr/sbin/sendmail -t <<SYSTEMDMAIL
|
||
|
To: root
|
||
|
From: systemd <{{ hostname }}>
|
||
|
Subject: $1
|
||
|
Content-Transfer-Encoding: 8bit
|
||
|
Content-Type: text/plain; charset=UTF-8
|
||
|
|
||
|
$(systemctl status --full "$1")
|
||
|
SYSTEMDMAIL
|