http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=4873
[email protected] changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] Version|rel_3_2 |rel_3_4 Severity|normal |major --- Comment #1 from [email protected] 2011-07-22 01:26:40 UTC --- In the current version of debian testing the /var/run and /var/lock directories are recreated at each boot (this is part of the migration from /var/run to /run). This means that the koha directories are not available after each boot. I fixed this issue by modifying the /etc/init.d/koha-common script as follows. --- koha-common.orig 2011-07-22 11:07:58.000000000 +1000 +++ koha-common 2011-07-22 11:06:43.000000000 +1000 @@ -42,6 +42,8 @@ # do_start() { + # We insure all required directories exist, including disabled ones. + koha-create-dirs $(koha-list) koha-start-zebra $(koha-list --enabled) } yours John -- Configure bugmail: http://bugs.koha-community.org/bugzilla3/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA Contact for the bug. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
