Skip to content
Snippets Groups Projects
Commit 7ba41133 authored by nimrod's avatar nimrod
Browse files

- Workaround for Ubuntu Precise when running sshd inside a Docker container.

parent 5f7b9387
No related branches found
No related tags found
No related merge requests found
......@@ -32,6 +32,15 @@
name: openssh-server
state: present
- name: Create sshd run directory
when: ansible_os_family == 'Debian'
file:
path: /var/run/sshd
owner: root
group: root
mode: 0o0755
state: directory
- name: Start SSH service
when: ansible_pkg_mgr == 'apt'
service:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment