Disk [AIX df]: Add version detection

This commit is contained in:
Muhammad Herdiansyah 2017-05-13 11:36:30 +07:00
parent ea1f853c2a
commit 2212cab688
1 changed files with 1 additions and 1 deletions

View File

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