Disk [AIX df]: Changed df versioning detection

This commit is contained in:
Muhammad Herdiansyah 2017-06-09 23:20:01 +07:00
parent 4364e67d6c
commit fd8f5145cb
1 changed files with 1 additions and 1 deletions

View File

@ -1818,7 +1818,7 @@ get_disk() {
df_version="$(df --version 2>&1)"
case "$df_version" in
*"blocks"*) err "Your version of df cannot be used due to the non-standard flags" ; return ;; # Haiku
*"recognized flag"*) df_flags=(-P -g) ;; # AIX, untested
*"IMitv"*) df_flags=(-P -g) ;; # AIX
*"befhikm"*) df_flags=(-P -k) ;; # IRIX
*) df_flags=(-P -h) ;;
esac