mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
11 lines
270 B
Text
11 lines
270 B
Text
|
#!/bin/sh
|
||
|
|
||
|
post_upgrade() {
|
||
|
if [ "$(vercmp $2 4.0.4)" -lt 0 ]; then
|
||
|
echo "Major upgrade from samba 3.x to 4.x,"
|
||
|
echo "please read the Samba4 migration guide:"
|
||
|
echo "http://wiki.samba.org/index.php/Samba4/samba3upgrade/HOWTO"
|
||
|
fi
|
||
|
}
|
||
|
# vim:set ts=2 sw=2 et:
|