Bug 15626: Remove log4perl.conf when using koha-remove
if you create a koha install using koha-create, and remove it with koha-remove, the /etc/koha/sites/$SITE/ directory won't be removed, because the /etc/koha/sites/$SITE/log4perl.conf has not been removed by this script. Test plan: Use this koha-remove script to remove a koha install Without this patch, the /etc/koha/sites/$SITE directory won't be removed. With this patch applied, the directory will be correctly removed. Signed-off-by: Hector Castro <hector.hecaxmmx@gmail.com> Works as advertised Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
This commit is contained in:
parent
47caf69a46
commit
8d3eb52eda
1 changed files with 2 additions and 0 deletions
2
debian/scripts/koha-remove
vendored
2
debian/scripts/koha-remove
vendored
|
@ -83,6 +83,8 @@ eof
|
|||
rm "$instancefile"
|
||||
[ -f "/etc/koha/sites/$name/koha-conf.xml" ] && \
|
||||
rm "/etc/koha/sites/$name/koha-conf.xml"
|
||||
[ -f "/etc/koha/sites/$name/log4perl.conf" ] && \
|
||||
rm "/etc/koha/sites/$name/log4perl.conf"
|
||||
[ -f "/etc/koha/sites/$name/zebra-biblios.cfg" ] && \
|
||||
rm "/etc/koha/sites/$name/zebra-biblios.cfg"
|
||||
[ -f "/etc/koha/sites/$name/zebra-biblios-dom.cfg" ] && \
|
||||
|
|
Loading…
Reference in a new issue