]> git.koha-community.org Git - koha.git/commit
Bug 12856: koha-disable fails without disabling site
authorLiz Rea <liz@catalyst.net.nz>
Mon, 6 Oct 2014 20:35:19 +0000 (09:35 +1300)
committerMason James <mtj@kohaaloha.com>
Wed, 25 Feb 2015 10:41:40 +0000 (23:41 +1300)
commitb7a1353cfe918d2bbdd4ca96c29b252849fb61a8
treec4f33957afaaa1decab7c02c5386fe04f7b0ad46
parenta2dc1e4ecaadb0676b4da54745c6bc7e53cc68d6
Bug 12856: koha-disable fails without disabling site

To test:
Package up a branch with this patch
install that package
create a site - sudo koha-create --create-db testdisable
enable a site - sudo koha-enable testdisable
check it's enabled - sudo koha-list --enabled
* it should show up
disable a site - sudo koha-disable testdisable
Do this for both debian squeeze/wheezy and ubuntu 12.04 and 14.04, if you can. I'd like to see a sign off from a debian (sq/wh)eez(e/y) or ubuntu 12 user, because I could only test reliably on ubuntu 14.04.
* make sure apache restarts and no errors are produced
check it's disabled - sudo koha-list --enabled
* it should not show up
check the site is still there - sudo koha-list
* it should still be there
check that the config file has the Include for disabling uncommented
* the line Include /etc/koha/apache-shared-disable.conf should not have a # in front.
Re-enable the site - sudo koha-enable testdisable
* the line Include /etc/koha/apache-shared-disable.conf should have a # in front.

And the final question - does the site work? All other functions unchanged?

Signed-off-by: Mason James <mtj@kohaaloha.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@gmail.com>
Works as expected. code reads better too.
Edit: I added a missing space in one line.
Signed-off-by: Mason James <mtj@kohaaloha.com>
debian/scripts/koha-disable