Bug 4873 - Ensure that the required directories exist on init
authorJohn Seymour <John.Seymour@nal.gov.au>
Fri, 22 Jul 2011 03:08:40 +0000 (15:08 +1200)
committerChris Cormack <chrisc@catalyst.net.nz>
Thu, 28 Jul 2011 02:05:58 +0000 (14:05 +1200)
As systems (Ubuntu already, Debian testing is doing it too) move to
ramdisking /var/run and /var/lock, or otherwise clearing them on boot,
we need to ensure that they're there when we need them. This patch
autocreates any directories that are missing when the init script runs.

Signed-off-by: Robin Sheat <robin@catalyst.net.nz>
Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
debian/koha-common.init

index 719a584..5be77d3 100755 (executable)
@@ -42,6 +42,8 @@ SCRIPTNAME=/etc/init.d/$NAME
 #
 do_start()
 {
+    # We insure all required directories exist, including disabled ones.
+    koha-create-dirs $(koha-list)
     koha-start-zebra $(koha-list --enabled)
 }