saving uncommitted changes in /etc prior to dnf run

This commit is contained in:
2022-01-21 15:22:07 +02:00
parent 7fdf786109
commit 738e03795f
2 changed files with 13 additions and 0 deletions

12
ssh/sshrc Executable file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
export PATH="/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:/opt/bin:$PATH"
HOSTNAME="$(hostname)"
if [[ "$USER" == "laser" ]]
then
curl -s -X POST -H "content-type: application/json" -d '{"routing_key":"1969ec3d30b74608d0135d6321275bb7","event_action":"trigger","payload":{"summary":"User '"$USER"' has logged in via SSH!!","source":"/etc/ssh/sshrc","severity":"critical","component":"exploratory-stats","group":"prod-d atapipe","class":"deploy"}}' https://events.pagerduty.com/v2/enqueue
else
exit 0
fi