From 63f67a7fc6acabc6acdcc96107c9bff573e17b90 Mon Sep 17 00:00:00 2001 From: Someone Date: Thu, 8 Jan 2026 21:27:49 +0100 Subject: [PATCH] [roles/workstation/google-chrome] install google chrome --- .../files/default/google-chrome.list | 3 ++ .../workstation/google-chrome/tasks/main.yml | 34 +++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 roles/workstation/google-chrome/files/default/google-chrome.list create mode 100644 roles/workstation/google-chrome/tasks/main.yml diff --git a/roles/workstation/google-chrome/files/default/google-chrome.list b/roles/workstation/google-chrome/files/default/google-chrome.list new file mode 100644 index 0000000..b2d572c --- /dev/null +++ b/roles/workstation/google-chrome/files/default/google-chrome.list @@ -0,0 +1,3 @@ +### THIS FILE IS AUTOMATICALLY CONFIGURED ### +# You may comment out this entry, but any other modifications may be lost. +deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main diff --git a/roles/workstation/google-chrome/tasks/main.yml b/roles/workstation/google-chrome/tasks/main.yml new file mode 100644 index 0000000..7ce0af1 --- /dev/null +++ b/roles/workstation/google-chrome/tasks/main.yml @@ -0,0 +1,34 @@ +##################################### +### someone's ansible provisioner ### +##################################### +# Part of: https://git.somenet.org/root/pub/somesible.git +# 2017-2026 by someone +# +--- +# DOESNT WORK ON DEBIAN 12. +#- name: add google-chrome repository +# deb822_repository: +# name: google-chrome +# types: deb +# uris: http://dl.google.com/linux/chrome/deb/ +# suites: stable +# components: main +# signed_by: https://dl.google.com/linux/linux_signing_key.pub +# tags: "online" +# register: apt_list_changes +# +# +#- name: update the repository cache +# apt: +# update_cache: yes +# tags: "online" +# when: apt_list_changes.changed +# +# +#- name: install google-chrome +# apt: +# pkg: +# - google-chrome-stable +# state: present +# policy_rc_d: 101 +# tags: "online" -- 2.47.3