- name: mkdir ~horus/.ssh file: path: /home/horus/.ssh state: directory - name: mkdir ~root/.ssh file: path: /root/.ssh state: directory - name: copy ssh config for horus copy: src: config dest: /home/horus/.ssh/config - name: copy ssh config for root copy: src: config dest: /root/.ssh/config - name: copy git private ssh key for root copy: src: git dest: /root/.ssh/git mode: 0400 - name: copy git private ssh key for horus copy: src: git dest: /home/horus/.ssh/git mode: 0400 owner: horus