@@ -, +, @@ --- debian/koha-common.preinst | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 debian/koha-common.preinst --- a/debian/koha-common.preinst +++ a/debian/koha-common.preinst @@ -0,0 +1,6 @@ +#!/bin/sh + +set -e + +# Bug 14055 - remove the yui symlink if there's one in the way preventing upgrades +[ -h /usr/share/koha/opac/htdocs/opac-tmpl/lib/yui ] && rm /usr/share/koha/opac/htdocs/opac-tmpl/lib/yui --