Create main.yml

master
Ruan Bekker 4 years ago committed by GitHub
parent 148b123dcd
commit 7348dbeb95
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 15
      roles/static-ip/tasks/main.yml

@ -0,0 +1,15 @@
# https://github.com/vicchi/ansible-pi-lockdown/blob/master/roles/static-ip/tasks/main.yml
---
- name: Configure static IP in /etc/dhcpcd.conf
become: yes
lineinfile:
dest: /etc/dhcpcd.conf
regexp: "{{ item.regexp }}"
line: "{{ item.line }}"
state: present
with_items:
- { regexp: "^interface eth[0-9]$", line: "interface {{ interface }}" }
- { regexp: "^static ip_address", line: "static ip_address={{ ipaddress }}" }
- { regexp: "^static routers", line: "static routers={{ routers }}" }
- { regexp: "^static domain_name_servers", line: "static domain_name_servers={{ dns_servers }}" }
notify: reboot
Loading…
Cancel
Save