Bug 32558: Add ability for background_jobs_worker.pl to process multiple jobs simulta...
[koha.git] / debian / koha-core.preinst
1 #!/bin/sh
2
3 set -e
4
5 # Bug 14055 - remove the yui symlink if there's one in the way preventing upgrades
6 [ -h /usr/share/koha/opac/htdocs/opac-tmpl/lib/yui ] && rm /usr/share/koha/opac/htdocs/opac-tmpl/lib/yui
7
8 # Bug 25485: remove the tiny_mce symlink if there's one in the way preventing upgrades
9 [ -h /usr/share/koha/intranet/htdocs/intranet-tmpl/lib/tiny_mce ] && rm /usr/share/koha/intranet/htdocs/intranet-tmpl/lib/tiny_mce
10
11 exit 0