6 lines
347 B
Bash
6 lines
347 B
Bash
#!/bin/bash
|
|
scp oracle:~/DB/db.7z /bck/$(date +'%Y-%m-%d').7z
|
|
curl https://ntfy.d.metallum.eu.org/Saretify -H 'Content-Type: application/json' -d @/dev/stdin<<EOF
|
|
{"text":"precentage of full drive are: main: $(ssh oracle df -hl |grep -P 'sda1\b' | awk '{print $5}'). Mongodb storage: $(ssh oracle df -hl |grep -P 'sdb\b' | awk '{print $5}')"
|
|
EOF
|