Commit 807b3b6f authored by nimrod's avatar nimrod
Browse files

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

parent 661a011a
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -22,6 +22,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: