Skip to content
Snippets Groups Projects
Commit 5fa6cf3e authored by nimrod's avatar nimrod
Browse files

- Install SSH server for testing purposes.

parent 88d9b945
No related branches found
No related tags found
No related merge requests found
......@@ -16,6 +16,18 @@
args:
creates: files/id_rsa
- name: Install SSH server
when: ansible_pkg_mgr == 'apt'
apt:
name: openssh-server
state: present
- name: Start SSH service
when: ansible_pkg_mgr == 'apt'
service:
name: ssh
state: started
- hosts: all
strategy: free
roles:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment