blob: d8bbfdb3afe07d901a922246ec97d2112deb53cc (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/sh
post_upgrade() {
if [ "$(vercmp 0.9.0 "$2")" -eq 1 ]; then
printf '==> If your /usr is on a separate partition, you must add the "usr" hook\n'
printf ' to /etc/mkinitcpio.conf and regenerate your images before rebooting\n'
fi
}
|