chromium/chromium.yml

52 lines
1.7 KiB
YAML
Raw Normal View History

2022-07-14 09:17:45 +02:00
- name: Chromium setup
hosts: all
tasks:
2022-07-14 11:43:30 +02:00
2022-07-25 14:36:24 +02:00
# - name: Install Chromium
# apt:
# name:
# - chromium-browser
2022-07-25 14:37:55 +02:00
2022-07-26 13:09:58 +02:00
- name: Install Flatpaks
community.general.flatpak:
name:
- com.github.Eloston.UngoogledChromium
2022-07-25 14:37:55 +02:00
2022-07-14 09:34:05 +02:00
- name: Create a directory if it does not exist
ansible.builtin.file:
2022-07-14 11:54:22 +02:00
path: "{{ item }}"
2022-07-14 09:34:05 +02:00
state: directory
2022-07-14 11:58:21 +02:00
owner: root
group: root
2022-07-14 09:34:05 +02:00
mode: '0755'
2022-07-14 11:49:06 +02:00
with_items:
2022-07-14 11:53:35 +02:00
- "/etc/chromium/policies/managed"
- "/etc/chromium/policies/recommended"
- "/var/lib/flatpak/app/com.github.Eloston.UngoogledChromium/x86_64/stable/active/files/chromium/policies/policies/managed"
- "/var/lib/flatpak/app/com.github.Eloston.UngoogledChromium/x86_64/stable/active/files/chromium/policies/policies/recommended"
2022-07-14 09:34:05 +02:00
2022-07-14 09:35:12 +02:00
- name: Chromium managed policy
ansible.builtin.copy:
src: chromium-managed.json
2022-07-14 11:58:21 +02:00
dest: "{{ item }}"
2022-07-14 09:35:12 +02:00
owner: root
group: root
mode: '0444'
follow: yes
backup: yes
2022-07-14 11:58:21 +02:00
with_items:
- "/etc/chromium/policies/managed/chrome.json"
- "/var/lib/flatpak/app/com.github.Eloston.UngoogledChromium/x86_64/stable/active/files/chromium/policies/policies/managed/chrome.json"
2022-07-14 09:34:05 +02:00
2022-07-14 09:35:12 +02:00
- name: Chromium recommended policy
ansible.builtin.copy:
src: chromium-recommended.json
2022-07-14 12:03:14 +02:00
dest: "{{ item }}"
2022-07-14 09:35:12 +02:00
owner: root
group: root
mode: '0444'
follow: yes
2022-07-14 11:58:21 +02:00
backup: yes
with_items:
- "/etc/chromium/policies/recommended/chrome.json"
- "/var/lib/flatpak/app/com.github.Eloston.UngoogledChromium/x86_64/stable/active/files/chromium/policies/policies/recommended/chrome.json"