* Jonathan McCrohan <[email protected]>, 2012-06-03, 03:12:
I've uploaded a new version to mentors.d.n with changes to the postinst based on Serafeim's suggestions. I think solves all of the remaining transition issues.

You wrote:

    if [ "fgrep -q -x ..." -o "fgrep -q -x ..." ]; then

This condition is always true (also: not very portable). You want this instead:

    if fgrep -q -x ... || fgrep -q -x ...; then

--
Jakub Wilk



--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]
Archive: http://lists.debian.org/[email protected]

Reply via email to