Message ID | 1527739814-30451-1-git-send-email-xifeng@redhat.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
diff --git a/common/rc b/common/rc index ffe5323..0295b30 100644 --- a/common/rc +++ b/common/rc @@ -3242,9 +3242,16 @@ _exclude_scratch_mount_option() _require_atime() { _exclude_scratch_mount_option "noatime" - if [ "$FSTYP" == "nfs" ]; then - _notrun "atime related mount options have no effect on NFS" - fi + case $FSTYP + in + nfs) + _notrun "atime related mount options have no effect on NFS" + ;; + cifs) + _notrun "atime related mount options have no effect on CIFS" + ;; + esac + } _require_relatime()