Compare commits

..

No commits in common. '738a3926859716921259c4602151386acd092cf4' and 'f4c7213a307bc8f65e0859f45464fee71f272709' have entirely different histories.

@ -1,7 +0,0 @@
---
- name: Setup Dev Environment
hosts: localhost
become: yes
become_user: cianhatton
roles:
- configure_git

@ -1,36 +0,0 @@
---
#- name: Update Packages
# ansible.builtin.apt:
# upgrade: dist
# cache_valid_time: 3600
#
#- name: Install gh package
# ansible.builtin.apt:
# pkg:
# - gh
- git_config:
name: core.editor
scope: global
value: vim
- git_config:
name: user.name
scope: global
value: chatton
- git_config:
name: user.email
scope: global
value: github.qpeyb@simplelogin.fr
- name: Enforce using ssh instead of https with github.
ansible.builtin.blockinfile:
path: ~/.gitconfig
append_newline: true
prepend_newline: true
block: |
[url "ssh://git@github.com/"]
insteadOf = https://github.com/

@ -1,3 +0,0 @@
#!/bin/bash
sudo apt-get install ansible

@ -0,0 +1,4 @@
---
- hosts: localhost
roles:
- install_packages
Loading…
Cancel
Save