[koha-commits] main Koha release repository branch new/deb_scripts_312beta3 created. v3.12.00-beta1-457-g38b1fd9

Git repo owner gitmaster at git.koha-community.org
Thu May 2 04:25:39 CEST 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "main Koha release repository".

The branch, new/deb_scripts_312beta3 has been created
        at  38b1fd99c4e3a2ae3a944c5ba0b17189da3feef5 (commit)

- Log -----------------------------------------------------------------
commit 38b1fd99c4e3a2ae3a944c5ba0b17189da3feef5
Author: Magnus Enger <magnus at enger.priv.no>
Date:   Tue Mar 5 13:49:11 2013 +0100

    Bug 9250 - Followup to add koha-*-sip commands to koha-common.xml
    
    The original patch for Bug 9250 did not add the new commands to
    debian/docs/koha-common.xml, which functions as a sort of table
    of contents for the real commands. This patch adds them.
    
    Signed-off-by: Robin Sheat <robin at catalyst.net.nz>
    
    Simple documentation patch
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 3dc22e7fb27162b3a461477bc40f5c38a1739516
Author: Robin Sheat <robin at catalyst.net.nz>
Date:   Mon Dec 10 18:57:04 2012 +1300

    Bug 9250 - [SIGNED-OFF] provide commands to manage the SIP server
    
    This adds commands required to control the SIP server. These commands
    are:
    * koha-enable-sip - copies the SIP config to the sites directory
    * koha-start-sip - starts the SIP server processes
    * koha-stop-sip - stops the SIP server processes
    
    It also calls these as appropriate from the koha-common init script.
    
    To use:
    1) sudo koha-enable-sip instancename
    2) sudo vim /etc/koha/sites/instancename/SIPconfig.xml
       Do whatever is needed for your site's SIP configuration
    3) sudo koha-start-sip instancename
    
    To test:
    1) Build packages with this patch
    2) Ensure that sudo koha-start-sip instancename doesn't do anything
    3) Run sudo koha-enable-sip instancename
    4) Edit /etc/koha/sites/instancename/SIPconfig.xml if needed (probably
       not required for testing)
    5) Run sudo koha-start-sip instancename
    6) Note that the sip processes are now running
    7) Run sudo koha-stop-sip instancename
    8) Note that the sip processes have gone
    9) Reboot your Koha server
    10) Note that the sip processes are back
    
    Sponsored-By: Waitaki District Council Libraries
    Sponsored-By: South Taranaki District Council Libraries
    Sponsored-By: Horowhenua District Council Libraries
    Sponsored-By: Rangitikei District Council Libraries
    
    Signed-off-by: Magnus Enger <magnus at enger.priv.no>
    Works as advertised. koha-start-sip without a prior koha-enable-sip
    does nothing. koha-enable-sip copies the SIP config file to the
    instance directory. After koha-enable-sip, koha-start-sip and
    koha-stop-sip works as expected. After a reboot, the SIP processes are
    still running. I have not actually tested the SIP servers after they
    have been started, but assume they work the same as always.
    The man pages look good.
    
    The new commands should also have been added to the man page for
    koha-common. I'll do a followup for that.
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 2cd5afa9741ef432a9f3ecac939c98e20d5ebfc5
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Sat Apr 13 21:10:33 2013 -0300

    Bug 10041 - Provide a koha-translate script to aid package users on installing translations
    
    Until we have solved the packaging of koha template translations, provide a command that manages the installed translations in a proper way.
    
    To test, build a Debian package of current master+the patches from this bug :-D and try the many options running koha-translate --help provide.
    
    The command itself can be grabbed from a git checkout with this patch applied to test the script's funcionality. If it (and its docs) fits the package building stuff, I'll test on monday when I can be back on my workstation.
    
    Sponsored-by: Universidad Nacional de Córdoba
    
    Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel at gmail.com>
    
    Comment: Good adition. Work as described. No errors.
    Copied to /usr/local/bin. No errors on install, update, remove, list and check.
    Passed-QA-by: Mason James <mtj at kohaaloha.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 7d09198659c92eda7046dee0f93e4caf2ec37096
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Mon Apr 29 15:18:17 2013 -0300

    Bug 10101 - Follwup: fix param check
    
    As Mason noted, there was an error on that line.
    
    Sponsored-by: Universidad Nacional de Córdoba
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    Signed-off-by: Mason James <mtj at kohaaloha.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 3bca90eb0c0fc91f64f3e479ac6ab25e54d4f1aa
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Tue Apr 23 11:03:44 2013 -0300

    Bug 10101 - make koha-enable more robust
    
    koha-enable now:
    
    - checks for the existence of the instance before any other action on it.
    - checks if the instance is already enabled before changing stuff in the config files.
    - only reloads apache if it is needed!
    - handles more than one instance name as parameter (the code was there, a check for the cardinality of the args prevented it from working).
    - documents this behaviour change in the docs
    - doesn't break if the provided (invalid) instance name is a prefix/suffix of a real one (added -x to the relevant grep command).
    
    To test:
    - Aplpy the patch, build your packages
    - Run koha-enable on
      - Non existent instance (try using a prefix or a suffix of an already created one too).
      - Already enabled existent instance name.
      - Disabled instance.
    
    Regards
    To+
    
    Sponsored-by: Universidad Nacional de Córdoba
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    Signed-off-by: Mason James <mtj at kohaaloha.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit ca118d57db383f5efebc4d53cba11ccc8af5c9a9
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Mon Apr 29 15:22:09 2013 -0300

    Bug 10104 - Followup: fix param check
    
    As noted by Mason on bug 10101, the check was not working for zero arguments.
    
    Sponsored-by: Universidad Nacional de Córdoba
    
    Signed-off-by: Mason James <mtj at kohaaloha.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit b055f7d86c7772cf52c4a20d04a7e1cb0c8c19c9
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Tue Apr 23 13:29:02 2013 -0300

    Bug 10104 - make koha-disable more robust
    
    koha-disable now:
    
    - checks for the existence of the instance before any actions on it.
    - checks if the instance is already disabled before touching anything (warns otherwise)
    - only reloads apache if needed
    - handles more than one instance name.
    - changed the docs to acknowledge the previous item.
    
    To test:
    - Apply the patch, build your package
    - Run koha-disable on
      - Non existent instance (try names that are prefix and suffix of a valid one too please)
      - Already disabled instance name.
      - Enabled instance name.
    
    It should work as expected and warn the user on the expected wrong cases.
    
    Regards
    To+
    
    Sponsored-by: Universidad Nacional de Córdoba
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    Signed-off-by: Mason James <mtj at kohaaloha.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit 98bde26d2571b43ecee07e017e36f45e1aa6e680
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Mon Apr 29 10:30:08 2013 -0300

    Bug 10144 - koha-start-zebra error handling
    
    koha-start-zebra now
    - Checks the instance exists.
    - Checks the instance is enabled.
    - Checks if the zebra daemon is already running.
    
    Regards
    To+
    
    Sponsored-by: Universidad Nacional de Córdoba
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    Signed-off-by: Mason James <mtj at kohaaloha.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

commit cee6909c8a5c10cc534a1ebe35ec5b8cda522eab
Author: Tomas Cohen Arazi <tomascohen at gmail.com>
Date:   Mon Apr 29 11:54:27 2013 -0300

    Bug 10149 - koha-restart-zebra error handling (rewording)
    
    koha-restart-zebra now
    - Checks the instance exists.
    - Checks the instance is enabled.
    - Checks if the zebra daemon is already running.
    
    Regards
    To+
    
    Edit:
    - changed some wording problems.
    - fixed an error in parameter validation
    
    Sponsored-by: Universidad Nacional de Córdoba
    Signed-off-by: Chris Cormack <chris at bigballofwax.co.nz>
    Signed-off-by: Mason James <mtj at kohaaloha.com>
    Signed-off-by: Jared Camins-Esakov <jcamins at cpbibliography.com>

-----------------------------------------------------------------------


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list