2024-07-12 23:57:29 -04:00
|
|
|
---
|
|
|
|
- name: Reset and Pull Git Repository
|
|
|
|
hosts: all
|
|
|
|
tasks:
|
2024-08-13 21:05:30 -04:00
|
|
|
- name: Change to iac directory
|
|
|
|
shell: cd ~/iac
|
2024-07-12 23:57:29 -04:00
|
|
|
args:
|
|
|
|
chdir: "/home/{{ ansible_user }}"
|
|
|
|
environment:
|
|
|
|
HOME: "/home/{{ ansible_user }}"
|
|
|
|
|
|
|
|
- name: Git Pull
|
|
|
|
shell: git pull
|
|
|
|
args:
|
2024-08-13 21:05:30 -04:00
|
|
|
chdir: "/home/{{ ansible_user }}/iac"
|
2024-07-12 23:57:29 -04:00
|
|
|
environment:
|
|
|
|
HOME: "/home/{{ ansible_user }}"
|
|
|
|
|
|
|
|
- name: Git Reset
|
|
|
|
shell: git reset --hard origin/main
|
|
|
|
args:
|
2024-08-13 21:05:30 -04:00
|
|
|
chdir: "/home/{{ ansible_user }}/iac"
|
2024-07-12 23:57:29 -04:00
|
|
|
environment:
|
|
|
|
HOME: "/home/{{ ansible_user }}"
|