diff options
author | Michael Scherer <misc@mageia.org> | 2011-06-08 15:09:28 +0000 |
---|---|---|
committer | Michael Scherer <misc@mageia.org> | 2011-06-08 15:09:28 +0000 |
commit | 01f9773bb56bdf9e03114608e2f65ac177ab1ed3 (patch) | |
tree | e62d4d814896053ed5208b53d02dbb9078354c35 /modules/subversion/templates | |
parent | 1de5d6030baf6e78145f7d56d3869854b815391c (diff) | |
download | puppet-01f9773bb56bdf9e03114608e2f65ac177ab1ed3.tar puppet-01f9773bb56bdf9e03114608e2f65ac177ab1ed3.tar.gz puppet-01f9773bb56bdf9e03114608e2f65ac177ab1ed3.tar.bz2 puppet-01f9773bb56bdf9e03114608e2f65ac177ab1ed3.tar.xz puppet-01f9773bb56bdf9e03114608e2f65ac177ab1ed3.zip |
- manage xinetd configuration, as we modified it
- move the management of /svn to the main module
Diffstat (limited to 'modules/subversion/templates')
-rw-r--r-- | modules/subversion/templates/xinetd | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/subversion/templates/xinetd b/modules/subversion/templates/xinetd new file mode 100644 index 00000000..41759c00 --- /dev/null +++ b/modules/subversion/templates/xinetd @@ -0,0 +1,14 @@ +# default: off +# description: svnserve is the server part of Subversion. +service svnserve +{ + disable = no + port = 3690 + socket_type = stream + protocol = tcp + wait = no + user = svn + server = /usr/bin/svnserve + server_args = -i -r <%= svn_base_path %> +} + |