diff --git a/chromium.yml b/chromium.yml index c1b0730..6e6d323 100644 --- a/chromium.yml +++ b/chromium.yml @@ -1 +1,21 @@ -x \ No newline at end of file +- name: Chromium setup + hosts: all + tasks: + + - name: Chromium managed policy + ansible.builtin.copy: + src: chromium-managed.json + dest: /var/lib/flatpak/app/com.github.Eloston.UngoogledChromium/x86_64/stable/active/files/chromium/policies/policies/managed/chrome.json + owner: root + group: root + mode: '0444' + backup: yes + + - name: Chromium recommended policy + ansible.builtin.copy: + src: chromium-recommended.json + dest: /var/lib/flatpak/app/com.github.Eloston.UngoogledChromium/x86_64/stable/active/files/chromium/policies/policies/recommended/chrome.json + owner: root + group: root + mode: '0444' + backup: yes \ No newline at end of file