http://qa.mandrakesoft.com/show_bug.cgi?id=3842
[EMAIL PROTECTED] changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|2.2.8a-1mdk |2.2.8a-5mdk
------- Additional Comments From [EMAIL PROTECTED] 2003-01-07 17:16 -------
This bug has been automatically updated to last version of product available.
Please check if it is still valid.
--
Configure bugmail: http://qa.mandrakesoft.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
------- Reminder: -------
assigned_to: [EMAIL PROTECTED]
status: UNCONFIRMED
creation_date:
description:
The $postinstall does the following:
ln -sf /usr/lib/smbwrapper.so /usr/bin/smbwrapper.so
but /usr could be read-only, if was mounted from an NFS server for instance.
Why not do this in the %install/%files sections, or if it must be done in
%postinstall, at least change it to something like:
[[ ! -e /usr/bin/smbwrapper.so ]] && ln -sf /usr/lib/smbwrapper.so
/usr/bin/smbwrapper.so
so as long as the server is updated first, (where the link will work) at least
the client(s) won't complain.