Commit graph

4 commits

Author SHA1 Message Date
Andreas Rohner
19f3a40fae Fix bug in git-daemon
The git-daemon command currently doesn't work and displays the following
error whenever a repository is cloned:

error: cannot run daemon: No such file or directory
[10920] unable to fork

On the client side the connection is simply terminated. The problem is,
that git-daemon tries to start a new instance of itself for every
new client that is connecting. It expects argv[0] to contain
"git-daemon", but since it is converted into a builtin command, argv[0]
only contains "daemon", which does not exist and causes the above error.
The fix simply prepends "git" to the list of arguments, so that the
resulting call looks something like "git daemon --serve ..."

Signed-off-by: Andreas Rohner <andreas.rohner@gmx.net>
2014-09-03 02:14:53 +02:00
Peter Wagner
51fa6d2f9c git: update to 2.1.0
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2014-08-26 21:19:30 +02:00
Peter Wagner
72f236973a add myself as maintainer for
alsa-lib
glib2
libffi
libsndfile
libtorrent
speex
tcp_wrappers
etherwake
git
nfs-kernel-server
portmap
rtorrent

Signed-off-by: Peter Wagner <tripolar@gmx.at>
2014-07-01 20:54:41 +02:00
Peter Wagner
306378c90d git: import from packages
Signed-off-by: Peter Wagner <tripolar@gmx.at>
2014-06-16 11:45:20 +02:00