diff options
author | binary <me@rgoncalves.se> | 2021-01-15 13:09:51 +0100 |
---|---|---|
committer | binary <me@rgoncalves.se> | 2021-01-15 13:09:51 +0100 |
commit | 2bfc94bc6c58b99ae37c46ecac4e047f6ef835c3 (patch) | |
tree | 58027c59559debbe770b5f88f9e08f18524a378f /roles | |
parent | cd22fc10934a90f07a186db3052d5cd7f169a52a (diff) | |
download | infrastructure-2bfc94bc6c58b99ae37c46ecac4e047f6ef835c3.tar.gz |
Delete gitdeamon. Needs a separate role
Diffstat (limited to 'roles')
-rw-r--r-- | roles/git/tasks/main.yml | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/roles/git/tasks/main.yml b/roles/git/tasks/main.yml index e8fc0e0..24a9d2d 100644 --- a/roles/git/tasks/main.yml +++ b/roles/git/tasks/main.yml @@ -23,16 +23,3 @@ state: directory mode: 0750 -# openbsd only -- name: enable gitdaemon - lineinfile: - path: /etc/rc.conf.local - regexp: "^gitdaemon_flags=" - line: "gitdaemon_flags=--reuseaddr --base-path={{ git_dir }}" - -- name: start gitdaemon - service: - name: gitdaemon - state: restarted - - |