diff options
author | Yigit Sever | 2022-10-15 15:42:27 +0300 |
---|---|---|
committer | Yigit Sever | 2022-10-15 15:42:27 +0300 |
commit | 2cc8a97489efa9654b9e794717a19bb1674913a0 (patch) | |
tree | 905e979f814d17e7be383c03965fb106db9c519c /ldm/ldm.install | |
parent | ecfc19b6d40658f8674fe3eb80c9f2d28a277cdc (diff) | |
download | packages-2cc8a97489efa9654b9e794717a19bb1674913a0.tar.gz packages-2cc8a97489efa9654b9e794717a19bb1674913a0.tar.bz2 packages-2cc8a97489efa9654b9e794717a19bb1674913a0.zip |
ldm: Adopted
Diffstat (limited to 'ldm/ldm.install')
-rw-r--r-- | ldm/ldm.install | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ldm/ldm.install b/ldm/ldm.install new file mode 100644 index 0000000..d59f404 --- /dev/null +++ b/ldm/ldm.install | |||
@@ -0,0 +1,11 @@ | |||
1 | post_install() { | ||
2 | echo 'ldm expects a config file at /etc/ldm.conf containing your user name.' | ||
3 | echo 'Just add this line into it:' | ||
4 | echo 'MOUNT_OWNER=<your user name>' | ||
5 | echo 'BASE_MOUNTPOINT=/mnt/' | ||
6 | } | ||
7 | post_upgrade() { | ||
8 | if [ ! -f /etc/ldm.conf ]; then | ||
9 | echo 'NOTE: The configuration file has been moved to /etc/ldm.conf' | ||
10 | fi | ||
11 | } | ||