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 d2f973f commit bea21d2Copy full SHA for bea21d2
ansible/install-apps.yml
@@ -7,17 +7,17 @@
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
13
+ state: present
14
- name: Add Google Chrome directory
15
apt_repository:
16
repo: "{{ item }}"
17
state: present
18
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"
- - name: Add Google Chrome key
- apt_key:
- url: https://dl-ssl.google.com/linux/linux_signing_key.pub
- state: present
21
- name: Install apps
22
apt:
23
update_cache: yes
0 commit comments