diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2016-03-19 11:06:10 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2016-03-19 11:06:10 -0300 |
commit | 623ce85c7746a4bc6c9eefd6e682bfe8cf1fb963 (patch) | |
tree | cc2edda7ab2a84743a89b9b98ce3fc3bcf6a48b3 | |
parent | 620ff9ebb4172fac03baf840b0be43f2695c49d6 (diff) | |
download | puppet-git-623ce85c7746a4bc6c9eefd6e682bfe8cf1fb963.tar.gz puppet-git-623ce85c7746a4bc6c9eefd6e682bfe8cf1fb963.tar.bz2 |
Switch from line to file_line
-rw-r--r-- | manifests/daemon.pp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/daemon.pp b/manifests/daemon.pp index c69e48f..e2d24f7 100644 --- a/manifests/daemon.pp +++ b/manifests/daemon.pp @@ -76,8 +76,8 @@ class git::daemon ( include inetd # git-daemon config in inetd - line { "git-daemon-inetd": - file => "/etc/inetd.conf", + file_line { "git-daemon-inetd": + path => "/etc/inetd.conf", line => "git stream tcp nowait git /usr/bin/git git daemon --inetd --verbose --base-path=/var/git/repositories /var/git/repositories", ensure => present, notify => Service['inetd'], |