Skip to content

Commit

Permalink
feat: improve initial start
Browse files Browse the repository at this point in the history
  • Loading branch information
escalate committed Feb 26, 2024
1 parent 33679e8 commit 522e3fd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,14 @@
mode: 0644
notify: Restart dhcpcd service

- name: Start and enable service
- name: Start service
ansible.builtin.systemd:
name: dhcpcd
state: started
daemon_reload: true

- name: Enable service
ansible.builtin.systemd:
name: dhcpcd
enabled: true
daemon_reload: true

0 comments on commit 522e3fd

Please sign in to comment.