cleanup.yml 309 B

12345678910
  1. ---
  2. - name: stop auth-proxy container
  3. service: name=auth-proxy state=stopped
  4. - name: cleanup iptables for auth proxy
  5. shell: iptables -D INPUT -p tcp --dport {{ item }} -j ACCEPT -m comment --comment "{{ auth_proxy_rule_comment }} ({{ item }})"
  6. become: true
  7. with_items:
  8. - "{{ auth_proxy_port }}"