projects
/
invirt/packages/invirt-dev.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
mkdir -p works if the directory already exists, so drop an unnecessary
[invirt/packages/invirt-dev.git]
/
debian
/
invirt-dev.init
diff --git
a/debian/invirt-dev.init
b/debian/invirt-dev.init
index
c7349f0
..
a12cac3
100755
(executable)
--- a/
debian/invirt-dev.init
+++ b/
debian/invirt-dev.init
@@
-26,9
+26,17
@@
do_start()
# 1 if daemon was already running
# 2 if daemon could not be started
ret=0
# 1 if daemon was already running
# 2 if daemon could not be started
ret=0
+
gen_files || ret=2
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
reprepro-env export || ret=2
+
invirt-build-conf || ret=2
invirt-build-conf || ret=2
+
daemon -n invirt-dev-git-daemon -- git daemon \
--user=git \
--group=nogroup \
daemon -n invirt-dev-git-daemon -- git daemon \
--user=git \
--group=nogroup \