minor fixes, updated graylog, persistent iptables rules

This commit is contained in:
Bastian de Byl
2022-05-07 21:34:14 -04:00
parent 34f2988a05
commit dc4aca06ec
6 changed files with 16 additions and 8 deletions

View File

@@ -5,7 +5,7 @@
diff: false
containers.podman.podman_container:
name: awsddns
image: docker.io/bdebyl/awsddns
image: docker.io/bdebyl/awsddns:1.0.10
recreate: false
restart: true
restart_policy: on-failure

View File

@@ -27,11 +27,10 @@
restart_policy: on-failure
log_driver: journald
env:
DRONE_LOGS_DEBUG: "true"
DRONE_RPC_DEBUG: "true"
DRONE_LOGS_DEBUG: "false"
DRONE_RPC_DEBUG: "false"
DRONE_GITHUB_CLIENT_ID: "{{ drone_gh_client_id }}"
DRONE_GITHUB_CLIENT_SECRET: "{{ drone_gh_client_sec }}"
DRONE_GIT_ALWAYS_AUTH: "true"
DRONE_RPC_SECRET: "{{ drone_rpc_secret }}"
DRONE_SERVER_HOST: "{{ ci_server_name }}"
DRONE_SERVER_PROTO: "{{ drone_server_proto }}"

View File

@@ -96,8 +96,8 @@
become_user: "{{ podman_user }}"
containers.podman.podman_container:
name: graylog
image: docker.io/graylog/graylog:4.2
recreate: false
image: docker.io/graylog/graylog:4.2.9
recreate: true
restart: true
restart_policy: on-failure
sysctl:

View File

@@ -4,7 +4,7 @@
ansible.builtin.file:
path: "{{ item }}"
state: directory
owner: "{{ podman_user }}"
owner: "{{ podman_subuid.stdout }}"
group: "{{ podman_user }}"
mode: 0755
notify: restorecon podman

View File

@@ -70,3 +70,12 @@
tags:
- pihole
- firewall
- name: Save state of iptables for IPv4
become: true
community.general.iptables_state:
state: saved
path: /etc/sysconfig/iptables
tags:
- pihole
- firewall