aboutsummaryrefslogtreecommitdiff
path: root/handlers/main.yml
blob: df6cede419b88110145c7d655b65e2d38b8b96e0 (plain)
1
2
3
4
5
---
# File: /etc/ansible/roles/use-proxy/handlers/main.yml

- name: stop ssh tunnel
  shell: ps -ef | grep -iE -- "ss[h].*{{local_proxy_port}}" | awk '{print $2}' | xargs kill -9
bgstack15