Playbooks to a new Lilik
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
221 B

  1. ---
  2. - name: 'uci commit firewall'
  3. command: 'uci commit firewall'
  4. delegate_to: '{{ firewall }}'
  5. - name: 'reload firewall'
  6. openwrt_init:
  7. name: 'firewall'
  8. state: 'reloaded'
  9. delegate_to: '{{ firewall }}'
  10. ...