diff options
author | Michael Scherer <misc@zarb.org> | 2014-12-16 10:31:40 +0100 |
---|---|---|
committer | Michael Scherer <misc@zarb.org> | 2014-12-16 10:31:40 +0100 |
commit | e9b939228d5a6e41652963615e7a4cebd671fece (patch) | |
tree | 539cf738406122bd2d7874c00d559f147c7aab8d /roles | |
parent | 98676274a8be4b77071e61087125e5cf86bbf29c (diff) |
Add a git-daemon role
Diffstat (limited to 'roles')
-rw-r--r-- | roles/git-daemon/tasks/main.yml | 7 |
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 + |