#!/bin/sh

## arg 1:  the new package version
## arg 2:  the old package version
post_upgrade() {
  if (( "$(vercmp "$2" 0.19.20121005)" < 0 )); then
    echo 'btrfs multi-device support now relies on linux 3.6 or later'
  fi
}

# vim:set ts=2 sw=2 et:
