subversion: make svnserve daemonize
Fix svnserve startup to "daemonize" but run in foreground. (One of -d -i -t or -X must be provided.) Fix 'run' script to allow config file with custom run options.
This commit is contained in:
parent
27698d76cd
commit
fde87e4c01
|
@ -1,2 +1,3 @@
|
|||
#!/bin/sh
|
||||
exec svnserve --foreground
|
||||
[ -r conf ] && . ./conf
|
||||
exec svnserve -d --foreground $OPTS
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'subversion'
|
||||
pkgname=subversion
|
||||
version=1.10.2
|
||||
revision=1
|
||||
revision=2
|
||||
build_style=gnu-configure
|
||||
configure_args="--with-apxs --disable-javahl --disable-static --without-kwallet
|
||||
--with-gnome-keyring --with-editor=vi --disable-mod-activation
|
||||
|
|
Loading…
Reference in New Issue