workstation/roles/fedora/tasks/google-chrome.yml

31 lines
1 KiB
YAML
Raw Normal View History

2021-11-14 14:33:30 +00:00
---
2023-01-21 19:42:51 +00:00
# Copyright 2021-2023 Anthony Perkins
2021-11-14 14:33:30 +00:00
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Install Google signing key
become: true
ansible.builtin.rpm_key:
key: https://dl.google.com/linux/linux_signing_key.pub
fingerprint: EB4C1BFD4F042F6DDDCCEC917721F63BD38B4796
- name: Install Google Chrome repository
become: true
ansible.builtin.copy:
src: google-chrome.repo
dest: /etc/yum.repos.d/google-chrome.repo
- name: Install Google Chrome package
become: true
ansible.builtin.dnf:
name: 'google-chrome-stable'
state: present