diff options
author | Michael Scherer <misc@mageia.org> | 2011-01-16 13:15:25 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-01-16 13:15:25 +0000 |
commit | f24aac3f9c039873e410c69f12e273c0a3fc9d15 (patch) | |
tree | c57d6bd3c5a53ec42717960d1fc7498bb1bc4ae1 /modules/git | |
parent | 202ed87720f6d83149ea7bd1f49292b422284d01 (diff) | |
download | puppet-f24aac3f9c039873e410c69f12e273c0a3fc9d15.tar puppet-f24aac3f9c039873e410c69f12e273c0a3fc9d15.tar.gz puppet-f24aac3f9c039873e410c69f12e273c0a3fc9d15.tar.bz2 puppet-f24aac3f9c039873e410c69f12e273c0a3fc9d15.tar.xz puppet-f24aac3f9c039873e410c69f12e273c0a3fc9d15.zip |
oops, add missing file
Diffstat (limited to 'modules/git')
-rw-r--r-- | modules/git/templates/xinetd | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/git/templates/xinetd b/modules/git/templates/xinetd new file mode 100644 index 00000000..add7770d --- /dev/null +++ b/modules/git/templates/xinetd @@ -0,0 +1,13 @@ +service git +{ + disable = no + type = UNLISTED + port = 9418 + socket_type = stream + server = /usr/lib/git-core/git-daemon + wait = no + user = nobody + server_args = --inetd --verbose --export-all --base-path=<%= git_base_path %> + log_on_failure += HOST +} + |