mkdir -p works if the directory already exists, so drop an unnecessary
[invirt/packages/invirt-dev.git] / debian / invirt-dev.init
index c7349f0..a12cac3 100755 (executable)
@@ -26,9 +26,17 @@ do_start()
     #  1 if daemon was already running
     #  2 if daemon could not be started
     ret=0
+
     gen_files || ret=2
+    for d in db dists lists pool; do
+        dir="/srv/repository/$d"
+        mkdir -p "$dir"
+        chown -R repository:nogroup "$dir"
+    done
     reprepro-env export || ret=2
+
     invirt-build-conf || ret=2
+
     daemon -n invirt-dev-git-daemon -- git daemon \
         --user=git \
         --group=nogroup \