From 6cc149697eb1b7d7c94f579821e32be1e4094edf Mon Sep 17 00:00:00 2001 From: olli Date: Thu, 14 Jul 2022 09:17:45 +0200 Subject: [PATCH] =?UTF-8?q?=E2=80=9Echromium.yml=E2=80=9C=20=C3=A4ndern?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- chromium.yml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) 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