* Jonathan McCrohan <jmccrohan@gmail.com>, 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