summaryrefslogtreecommitdiff
path: root/ldm/ldm.install
diff options
context:
space:
mode:
Diffstat (limited to 'ldm/ldm.install')
-rw-r--r--ldm/ldm.install11
1 files changed, 11 insertions, 0 deletions
diff --git a/ldm/ldm.install b/ldm/ldm.install
new file mode 100644
index 00000000..d59f404a
--- /dev/null
+++ b/ldm/ldm.install
@@ -0,0 +1,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
+}