server-setup/tasks/personal-linux-config.yml

17 lines
559 B
YAML

---
- name: Ensure the hostname package is installed and updated
ansible.builtin.apt:
update_cache: yes
cache_valid_time: 0
name: hostname
state: latest
- name: Ensure the personal-linux-config repositories is updated
ansible.builtin.git:
dest: /root/personal-linux-config
repo: https://git.bjphoster.com/b.pedini/personal-linux-config
clone: yes
update: yes
- name: Ensure the config changes are deployed
ansible.builtin.shell:
cmd: sh -c "cd /root/personal-linux-config; bash /root/personal-linux-config/deploy.sh"