Skip to content

Instantly share code, notes, and snippets.

View davidmanifold's full-sized avatar

David Manifold davidmanifold

  • United Kingdom
View GitHub Profile
@devynspencer
devynspencer / ansible-github.yml
Last active May 10, 2025 16:47
Example playbook for cloning a private git repository with Ansible.
---
hosts: all
tasks:
- name: add github ssh key
copy: >
src=files/id_rsa.github
dest=/root/.ssh/id_rsa.github
owner=root
group=root