mirror of
https://gh.wpcy.net/https://github.com/WeblateOrg/scripts.git
synced 2026-04-24 14:42:19 +08:00
9 lines
272 B
Bash
Executable file
9 lines
272 B
Bash
Executable file
#!/bin/sh
|
|
|
|
needed=$(du -s -BM /home/weblate/postgresql/ | awk '{print $1}' | tr -d M)
|
|
available=$(df -BM --output=avail /home/weblate/ | tail -n1 | tr -d M)
|
|
|
|
if [ "$available" -lt $((needed * 2)) ]; then
|
|
echo "Available $available, current size $needed"
|
|
exit 1
|
|
fi
|