diff --git a/README.md b/README.md index 7999b5a..26a57f2 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # ansible Getting real with my system management using ansible-pull. + +This setup is specific for my devices and my needs. You're welcome to use it as an example for your needs, but do not expect it to work as-is. \ No newline at end of file diff --git a/facts/package_names.yml b/facts/package_names.yml index 3cf1001..d32c4de 100644 --- a/facts/package_names.yml +++ b/facts/package_names.yml @@ -8,6 +8,7 @@ when: ansible_distribution == "Pop!_OS" +# TODO Needs tested - name: Set Ubuntu Package Names ansible.builtin.set_fact: firefox: firefox @@ -15,6 +16,7 @@ when: ansible_distribution == "Ubuntu" +# TODO Needs tested - name: Set FreeBSD Package Names ansible.builtin.set_fact: firefox: firefox diff --git a/facts/service_names.yml b/facts/service_names.yml index bb1b8d4..86871d3 100644 --- a/facts/service_names.yml +++ b/facts/service_names.yml @@ -10,6 +10,7 @@ when: ansible_distribution == "Pop!_OS" +# TODO Needs tested - name: Set Ubuntu Service Names ansible.builtin.set_fact: cups: cups @@ -19,6 +20,7 @@ when: ansible_distribution == "Ubuntu" +# TODO Needs tested - name: Set FreeBSD Service Names ansible.builtin.set_fact: cups: cups diff --git a/tasks/flatpaks.yml b/tasks/flatpaks.yml index 172f2db..0f96850 100644 --- a/tasks/flatpaks.yml +++ b/tasks/flatpaks.yml @@ -1,4 +1,5 @@ -- name: Install Flatpak TODO! Make only for workstations +# Pre-reqs +- name: Install Flatpak package: name: flatpak update_cache: yes @@ -31,6 +32,6 @@ - name: Remove packages that may come with an OS but were just installed as Flatpak package: name: - - "{{ firefox }}" - - "{{ thunderbird }}" + - firefox + - thunderbird state: absent \ No newline at end of file