12 lines
628 B
Bash
Executable File
12 lines
628 B
Bash
Executable File
#!/bin/bash
|
|
|
|
f=/home/jhk/projects/suse/product-docs/stackstate-product-docs/docs/next/modules/en/pages/use/alerting/notifications/channels/teams.adoc
|
|
|
|
done_already=$(grep '^image::k8s/notifications-teams-example.png\[Teams example,75%\]' "$f")
|
|
if [ -z "$done_already" ]; then
|
|
sed -i 's/is created in the channel.*/is created in the channel.\n\n\.Teams messages for an open and close notification\nimage::k8s\/notifications-teams-example.png[Teams example,75%]/gm' "$f"
|
|
fi
|
|
|
|
sed -i 's/image::k8s\/notifications-teams-webhook-template.png/\nimage::k8s\/notifications-teams-webhook-template.png/' "$f"
|
|
|
|
sed -i '/^$/N;/^\n$/D' "$f" |