fix: add linter
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Markus Pesch 2023-02-08 18:22:40 +01:00
parent 5983b4cf01
commit d3697463ee
Signed by: volker.raschek
GPG Key ID: 852BCC170D81A982
3 changed files with 12 additions and 12 deletions

View File

@ -32,4 +32,4 @@ dhcpd_zones: []
# key: dyndns
# - name: 181.168.192.in-addr.arpa
# primary: 192.168.181.1
# key: dyndns
# key: dyndns

View File

@ -1,7 +1,7 @@
---
- name: restart dhcpd
systemd:
ansible.builtin.systemd:
name: "{{ dhcpd_service_name }}"
state: restarted
daemon_reload: true
daemon_reload: true

View File

@ -1,7 +1,7 @@
---
- name: check if at least one subnet is defined
assert:
ansible.builtin.assert:
that:
- dhcpd_subnets | length > 0
fail_msg: "No subnet defined"
@ -10,14 +10,14 @@
include_vars: "{{ ansible_os_family }}.yml"
- name: install dhcpd with dependencies
package:
ansible.builtin.package:
name: "{{ item }}"
state: present
with_items:
- "{{ dhcpd_package_names }}"
- name: create dhcpd config
template:
ansible.builtin.template:
src: "dhcpd.conf.j2"
dest: "{{ dhcpd_main_config }}"
owner: "{{ dhcpd_unix_user }}"
@ -31,19 +31,19 @@
path: "{{ dhcpd_cache_directory }}"
register: cache_stats
- name: remove cache dir
file:
ansible.builtin.file:
path: "{{ dhcpd_cache_directory }}"
state: absent
when: cache_stats.stat.exists
- name: create cache dir
file:
ansible.builtin.file:
path: "{{ dhcpd_cache_directory }}"
owner: "{{ dhcpd_unix_user }}"
group: "{{ dhcpd_unix_group }}"
mode: 0755
state: directory
- name: create cache files
file:
ansible.builtin.file:
path: "{{ dhcpd_cache_directory }}/{{ item }}"
owner: "{{ dhcpd_unix_user }}"
group: "{{ dhcpd_unix_group }}"
@ -54,9 +54,9 @@
notify: restart dhcpd
- name: start and enable dhcpd
systemd:
ansible.builtin.systemd:
name: "{{ item }}"
state: started
enabled: yes
enabled: true
with_items:
- "{{ dhcpd_service_name }}"
- "{{ dhcpd_service_name }}"