Нема описа
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.

12345678910111213
  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: Create ferm configuration directory
  6. file: path=/etc/ferm state=directory
  7. - name: Copy ferm firewall rules into place
  8. copy: src=etc_ferm_ferm.conf dest=/etc/ferm/ferm.conf
  9. notify:
  10. - reload ferm rules