Is it possible to send cron output via Proxmox notifications?

fowr0yl

Member
Mar 15, 2022
60
11
13
64
Braunschweig
Cron messages usually are send via mail?

I would like to use Proxmox Notifications do send these messages via webhook.

Is this possible?
How to do that?

Henning
 
Cron messages usually are send via mail?
Yes, that's how it's implemented.

Is this possible? How to do that?
You can always pipe the output of your script to somwhere else, so it could also be piped into a "webhook-transporter" script, what you need to create to send the message. So just having your command like this:

Code:
/run/my/command.sh 2>&1 | /path/to/your/webhhok-transporter-script.sh
 
  • Like
Reactions: Johannes S