blob: d59f404a6ccf838718e52d1583fddf333d551998 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
echo 'ldm expects a config file at /etc/ldm.conf containing your user name.'
echo 'Just add this line into it:'
echo 'MOUNT_OWNER=<your user name>'
echo 'BASE_MOUNTPOINT=/mnt/'
}
post_upgrade() {
if [ ! -f /etc/ldm.conf ]; then
echo 'NOTE: The configuration file has been moved to /etc/ldm.conf'
fi
}
|