@installdoc/ansible-gas-station
Version:
An Ansible playbook that provisions your network with software from GitHub Awesome lists, developed with disaster recovery in mind ⛽🔥🤤
16 lines (13 loc) • 340 B
YAML
- name: restart sshd
service:
name: sshd
state: restarted
- name: restart sshd win
ansible.windows.win_service:
name: sshd
state: restarted
- name: restart sshd darwin # noqa 303 503
environment:
PATH: /usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:{{ ansible_env.PATH }}
command: brew services restart sshd