core/samba/samba.install

15 lines
329 B
Plaintext
Raw Normal View History

#!/bin/sh
post_install() {
systemd-tmpfiles --create samba.conf
}
2013-11-12 08:34:54 +08:00
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: