Skip to content
Snippets Groups Projects
Commit f2aff950 authored by Paul's avatar Paul :turtle:
Browse files

fix some linting comlaints

parent 50d61c3b
No related branches found
No related tags found
1 merge request!36WIP: ansible for srv02
skip_list:
- 208
\ No newline at end of file
...@@ -41,6 +41,7 @@ ...@@ -41,6 +41,7 @@
# download public keys to your local machine # download public keys to your local machine
- name: create public key files - name: create public key files
shell: shell:
creates: /etc/fastd/ffhl_mesh_gwvpn/pubkey.key
cmd: fastd --show-key -c /etc/fastd/ffhl_mesh_gwvpn/fastd.conf > /etc/fastd/ffhl_mesh_gwvpn/pubkey.key cmd: fastd --show-key -c /etc/fastd/ffhl_mesh_gwvpn/fastd.conf > /etc/fastd/ffhl_mesh_gwvpn/pubkey.key
- name: fetch public keys - name: fetch public keys
......
...@@ -54,8 +54,10 @@ ...@@ -54,8 +54,10 @@
- name: networkd templates - name: networkd templates
tags: [systemd-networkd] tags: [systemd-networkd]
block: block:
- template: src=network/10-ffhl.netdev.j2 dest=/etc/systemd/network/10-ffhl.netdev - name: apply network templates
- template: src=network/12-ffhl.network.j2 dest=/etc/systemd/network/12-ffhl.network template: src=network/10-ffhl.netdev.j2 dest=/etc/systemd/network/10-ffhl.netdev
- name: apply netowrk templates
template: src=network/12-ffhl.network.j2 dest=/etc/systemd/network/12-ffhl.network
- name: copy network configs - name: copy network configs
copy: src=systemd-networkd/ dest=/etc/systemd/network/ copy: src=systemd-networkd/ dest=/etc/systemd/network/
- name: restart systemd-networkd - name: restart systemd-networkd
...@@ -66,8 +68,10 @@ ...@@ -66,8 +68,10 @@
- name: template iptables - name: template iptables
tags: [iptables, network] tags: [iptables, network]
block: block:
- template: src=iptables/rules.v4 dest=/etc/iptables/rules.v4 - name: iptables4 template
- template: src=iptables/rules.v6 dest=/etc/iptables/rules.v6 template: src=iptables/rules.v4 dest=/etc/iptables/rules.v4
- name: iptables6 template
template: src=iptables/rules.v6 dest=/etc/iptables/rules.v6
- name: reload iptables - name: reload iptables
systemd: systemd:
state: restarted state: restarted
......
...@@ -32,6 +32,7 @@ ...@@ -32,6 +32,7 @@
repo: git@git.luebeck.freifunk.net:FreifunkLuebeck/fastd-keys.git repo: git@git.luebeck.freifunk.net:FreifunkLuebeck/fastd-keys.git
dest: /var/local/ffhl-mesh-vpn-peers dest: /var/local/ffhl-mesh-vpn-peers
accept_hostkey: yes accept_hostkey: yes
version: HEAD
- name: add post-merge hook - name: add post-merge hook
template: template:
......
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
repo: "{{ dns_repo_url }}" repo: "{{ dns_repo_url }}"
dest: /var/local/ffhl-dns dest: /var/local/ffhl-dns
accept_hostkey: yes accept_hostkey: yes
version: HEAD
- name: remove default bind-backend config - name: remove default bind-backend config
file: file:
......
--- ---
- command: systemctl mask display-manager.service
- command: systemctl daemon-reload - name: mask display-manager
systemd:
masked: yes
name: display-manager.service
- name: reload systemd
systemd:
daemon_reload: yes
# - name: stop bird # - name: stop bird
# systemd: # systemd:
......
--- ---
- lineinfile:
- name: check and add apt sources.list contents
lineinfile:
path: /etc/apt/sources.list path: /etc/apt/sources.list
regexp: '^deb .* main' regexp: '^deb .* main'
line: deb http://deb.debian.org/debian stable main line: deb http://deb.debian.org/debian bullseye main
- name: update the system - name: update the system
apt: apt:
update_cache: yes update_cache: yes
upgrade: safe
--- ---
- lineinfile: state=present dest=/etc/iptables/iptables.rules line="-A POSTROUTING -o {{ snat_dev }} -j SNAT --to-source {{ snat_ip4 }}" insertafter="^\*nat$" - name: add iptables rules
- template: src=03-public-ip.network.j2 dest=/etc/systemd/network/03-public-ip.network lineinfile: state=present dest=/etc/iptables/iptables.rules line="-A POSTROUTING -o {{ snat_dev }} -j SNAT --to-source {{ snat_ip4 }}" insertafter="^\*nat$"
- template: src=bird_ffrhein.conf.j2 dest=/etc/bird/bird_ffrhein.conf - name: add systemd-networkd .network configs
template: src=03-public-ip.network.j2 dest=/etc/systemd/network/03-public-ip.network
- name: brid routing config
template: src=bird_ffrhein.conf.j2 dest=/etc/bird/bird_ffrhein.conf
tags: tags:
- bird - bird
...@@ -30,6 +30,7 @@ ...@@ -30,6 +30,7 @@
git: git:
repo: https://github.com/freifunk/icvpn.git repo: https://github.com/freifunk/icvpn.git
dest: /etc/tinc/icvpn dest: /etc/tinc/icvpn
version: HEAD
- name: apply config template - name: apply config template
tags: [icvpn] tags: [icvpn]
......
--- ---
- systemd: - name: restart and enable units
systemd:
enabled: yes enabled: yes
state: restarted state: restarted
name: "{{ item }}" name: "{{ item }}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment