Initial commit

This commit is contained in:
Alex 2020-05-16 23:40:05 +02:00
commit f912a05ad0
Signed by: caskd
GPG Key ID: F92BA85F61F4C173
1 changed files with 8 additions and 0 deletions

8
tasks/main.yml Normal file
View File

@ -0,0 +1,8 @@
- name: Allow users on the private IP subnet to connect to redis
replace:
path: /etc/redis/redis.conf
regexp: "^bind .*"
replace: "bind {{ ansible_ens10.ipv4.address }}"
notify: Run service actions
tags:
- redis