@@ -, +, @@ koha-*-zebra - Run: $ perl misc4dev/cp_debian_files.pl $ sudo service koha-common stop $ sudo service koha-common start $ sudo service koha-common restart $ sudo koha-create --create-db test $ sudo koha-disable test $ sudo koha-zebra --start test $ sudo koha-remove test - Sign off :-D --- debian/koha-common.init | 8 ++++---- debian/koha-common.logrotate | 4 ++-- debian/scripts/koha-create | 2 +- debian/scripts/koha-disable | 2 +- debian/scripts/koha-remove | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) --- a/debian/koha-common.init +++ a/debian/koha-common.init @@ -22,7 +22,7 @@ NAME="koha-common" SCRIPTNAME=/etc/init.d/$NAME # Exit if the package is not installed -[ -x /usr/sbin/koha-start-zebra ] || exit 0 +[ -x /usr/sbin/koha-zebra ] || exit 0 # Read configuration variable file if it is present if [ -r /etc/default/$NAME ]; then @@ -55,7 +55,7 @@ do_start() { # We insure all required directories exist, including disabled ones. koha-create-dirs $(koha-list) - koha-start-zebra $(koha-list --enabled) + koha-zebra --start $(koha-list --enabled) koha-start-sip $(koha-list --enabled) koha-plack --start $(koha-list --enabled --plack) @@ -70,7 +70,7 @@ do_start() do_stop() { # We stop everything, including disabled ones. - koha-stop-zebra $(koha-list) || true + koha-zebra --stop $(koha-list) || true koha-stop-sip $(koha-list) || true koha-plack --stop --quiet $(koha-list --enabled --plack) @@ -83,7 +83,7 @@ do_stop() # Function that sends a SIGHUP to the daemon/service # do_reload() { - koha-restart-zebra $(koha-list --enabled) + koha-zebra --restart $(koha-list --enabled) koha-stop-sip $(koha-list) || true koha-start-sip $(koha-list --enabled) koha-plack --restart --quiet $(koha-list --enabled --plack) --- a/debian/koha-common.logrotate +++ a/debian/koha-common.logrotate @@ -9,12 +9,12 @@ notifempty sharedscripts prerotate - /usr/sbin/koha-stop-zebra $(koha-list --enabled) > /dev/null + /usr/sbin/koha-zebra --stop $(koha-list --enabled) > /dev/null /usr/sbin/koha-plack --stop --quiet $(koha-list --enabled --plack) > /dev/null endscript postrotate /etc/init.d/apache2 reload > /dev/null /usr/sbin/koha-plack --start --quiet $(koha-list --enabled --plack) > /dev/null - /usr/sbin/koha-start-zebra $(koha-list --enabled) > /dev/null + /usr/sbin/koha-zebra --start $(koha-list --enabled) > /dev/null endscript } --- a/debian/scripts/koha-create +++ a/debian/scripts/koha-create @@ -819,7 +819,7 @@ then service apache2 restart # Start Zebra. - koha-start-zebra "$name" + koha-zebra --start "$name" if [ "$USE_INDEXER_DAEMON" = "yes" ]; then # Start Indexer daemon --- a/debian/scripts/koha-disable +++ a/debian/scripts/koha-disable @@ -67,7 +67,7 @@ do koha-stop-sip $name fi if is_zebra_running $name; then - koha-stop-zebra $name + koha-zebra --stop $name fi if is_indexer_running $name; then koha-indexer --stop $name --- a/debian/scripts/koha-remove +++ a/debian/scripts/koha-remove @@ -78,7 +78,7 @@ eof # Stop the Zebra server if needed if is_zebra_running $name; then - koha-stop-zebra $name || /bin/true + koha-zebra --stop $name || /bin/true fi # Stop the indexer daemon if needed if is_indexer_running $name; then --