2022-08-28 04:01:22 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
/usr/sbin/sendmail -t <<SYSTEMDMAIL
|
|
|
|
To: root
|
2022-10-30 22:09:01 +01:00
|
|
|
From: $(whoami).systemd <systemd>
|
|
|
|
Subject: systemctl --user status $1 on {{ ansible_hostname }}
|
2022-08-28 04:01:22 +02:00
|
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Content-Type: text/plain; charset=UTF-8
|
|
|
|
|
2022-10-30 22:09:01 +01:00
|
|
|
$(systemctl --user status --full "$1")
|
2022-08-28 04:01:22 +02:00
|
|
|
SYSTEMDMAIL
|