We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bea21d2 commit 4098dd5Copy full SHA for 4098dd5
ansible/install-apps.yml
@@ -3,10 +3,6 @@
3
hosts: all
4
become: yes
5
tasks:
6
- - stat:
7
- path: "/etc/apt/sources.list.d/google-chrome.list"
8
- register: google_apt_exists
9
- ignore_errors: yes
10
- name: Add Google Chrome key
11
apt_key:
12
url: https://dl-ssl.google.com/linux/linux_signing_key.pub
@@ -16,8 +12,8 @@
16
repo: "{{ item }}"
17
13
state: present
18
14
loop:
19
- - "deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main"
20
- - "deb http://dl.google.com/linux/chrome/deb/ stable main"
15
+ - "deb [arch=amd64] https://dl.google.com/linux/chrome/deb/ stable main"
+ - "deb http://dl.google.com/linux/chrome/deb/ stable main"
21
- name: Install apps
22
apt:
23
update_cache: yes
0 commit comments