@@ -, +, @@ - In your koha-testing-docker clone, run: $ docker-compose up -p test - Open a shell inside the container (on a separate terminal): $ docker exec -it test_koha_1 bash - From within the /root directory, restart plack: $ cd /root $ koha-plack --restart kohadev find Mojolicious::Plugin::Koha::REST::Plugin::Pagination - Use the patched script from this patch: $ /kohadevbox/koha/debian/scripts/koha-plack --restart kohadev - Sign off :-D please test this version of koha-plack and stamp your sign-off, PLEASE. --- debian/scripts/koha-plack | 7 +++++++ 1 file changed, 7 insertions(+) --- a/debian/scripts/koha-plack +++ a/debian/scripts/koha-plack @@ -92,11 +92,18 @@ start_plack() log_daemon_msg "Starting Plack daemon for ${instancename}" + # Change to the instance's user dir + current_dir=$(pwd) + eval cd ~$instance_user + if ${STARMAN} ${STARMANOPTS}; then log_end_msg 0 else log_end_msg 1 fi + # Go back to the original dir + cd $current_dir + else log_daemon_msg "Error: Plack already running for ${instancename}" log_end_msg 1 --