Somethings weird happens.
After updating to 3.3 version, calibre-server doesn't update books list when I upload changes with rsync. I've to manually stopt/start service to see the changes.
This is my init script. Ubuntu 16.04
/etc/init/calibre-web-server.conf
Code:
description "Calibre (ebook manager) web server"
start on runlevel [2345]
stop on runlevel [^2345]
respawn
env LIBRARY_PATH='/home/xxxx/xxxx_calibre'
env PORT='31000'
script
exec /usr/bin/calibre-server $LIBRARY_PATH --port=$PORT
end script
Any ideas?