diff --git a/personal-linux-config.yml b/personal-linux-config.yml new file mode 100644 index 0000000..9b720ed --- /dev/null +++ b/personal-linux-config.yml @@ -0,0 +1,7 @@ +--- +- hosts: all + become: true + tasks: + - import_tasks: tasks/debian-general/git.yml + when: ansible_facts["os_family"] == "Debian" + - import_tasks: tasks/general/personal-linux-config.yml \ No newline at end of file diff --git a/tasks/debian-general/git.yml b/tasks/debian-general/git.yml new file mode 100644 index 0000000..e6a1f97 --- /dev/null +++ b/tasks/debian-general/git.yml @@ -0,0 +1,7 @@ +--- +- name: Ensure git is installed and updated + ansible.builtin.apt: + update_cache: yes + cache_valid_time: 0 + name: git + state: latest diff --git a/tasks/general/personal-linux-config.yml b/tasks/general/personal-linux-config.yml new file mode 100644 index 0000000..3cf11f5 --- /dev/null +++ b/tasks/general/personal-linux-config.yml @@ -0,0 +1,16 @@ +--- +- 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 --server"