No Description
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.

ferm.yml 314B

1234567891011
  1. ---
  2. # Installs and configures ferm, which in turn uses iptables for firewall management
  3. - name: Install ferm
  4. apt: pkg=ferm state=present
  5. - name: Copy ferm firewall rules into place
  6. file: path=/etc/ferm state=directory
  7. - copy: src=etc_ferm_ferm.conf dest=/etc/ferm/ferm.conf
  8. notify:
  9. - reload ferm rules