Skip to content

Commit

Permalink
Merge pull request #188 from aristanetworks/issues/ansible-lint
Browse files Browse the repository at this point in the history
  • Loading branch information
titom73 authored Apr 24, 2020
2 parents 6e3b92b + 9e84678 commit b2ac635
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@

- name: Restart DHCP service
service:
name: '{{dhcp_service}}'
name: '{{ dhcp_service }}'
state: restarted
listen: "restart dhcpd"
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
become: true
template:
src: 'dhcpd.conf.j2'
dest: '{{dhcp_config}}'
dest: '{{ dhcp_config }}'
backup: yes
notify: "restart dhcpd"

- name: Check & activate DHCP service
become: true
service:
name: '{{dhcp_service}}'
name: '{{ dhcp_service }}'
enabled: yes
state: started

0 comments on commit b2ac635

Please sign in to comment.