blob: b32f1b72d2c72462f4e8ab8c118e5ec86a437adb (
plain)
1
2
3
4
5
6
7
8
9
|
post_install() {
echo 'ldm expects a config file at /etc/conf.d/ldm containing your user and group id (uid and gid respectively).'
echo 'Just add those two lines into it:'
echo 'USER_GID=<output of `id -g` ran from your user>'
echo 'USER_UID=<output of `id -u` ran from your user>'
}
post_upgrade() {
post_install
}
|