summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Scherer <misc@zarb.org>2014-12-16 10:31:40 +0100
committerMichael Scherer <misc@zarb.org>2014-12-16 10:31:40 +0100
commite9b939228d5a6e41652963615e7a4cebd671fece (patch)
tree539cf738406122bd2d7874c00d559f147c7aab8d
parent98676274a8be4b77071e61087125e5cf86bbf29c (diff)
Add a git-daemon role
-rw-r--r--roles/git-daemon/tasks/main.yml7
1 files changed, 7 insertions, 0 deletions
diff --git a/roles/git-daemon/tasks/main.yml b/roles/git-daemon/tasks/main.yml
new file mode 100644
index 0000000..0571a29
--- /dev/null
+++ b/roles/git-daemon/tasks/main.yml
@@ -0,0 +1,7 @@
+---
+- yum: name={{ item }} state=installed
+ with_items:
+ - git-daemon
+
+- service: name=git state=started enabled=yes
+