Revert "Install Chrome on docker images" 47/59947/1
authorJessica Wagantall <jwagantall@linuxfoundation.org>
Fri, 10 Aug 2018 02:29:59 +0000 (02:29 +0000)
committerJessica Wagantall <jwagantall@linuxfoundation.org>
Fri, 10 Aug 2018 02:29:59 +0000 (02:29 +0000)
This reverts commit 22c11531ef1bc07c7e84088e1a595cd5c26fb3a6.

Issue-ID: CIMAN-33
Change-Id: I824e29e064c716104d4d17c3cac63c2e2db17552
Signed-off-by: Jessica Wagantall <jwagantall@linuxfoundation.org>
packer/provision/local-docker.yaml

index 31369b9..3290c10 100644 (file)
         name: libxml2-utils
         state: present
       become: true
-
-    - name: Add Google Chrome key
-      apt-key:
-        url: https://dl-ssl.google.com/linux/linux_signing_key.pub
-        state: present
-      become: true
-
-    - name: Add Google Chrome repo
-      copy: content="deb http://dl.google.com/linux/chrome/deb/ stable main" dest={{apt_file}} owner=root group=root mode=644
-      when: google_apt_exists.rc == 1
-      become: true
-
-    - name: Update apt cache
-      apt: update_cache=yes
-      when: google_apt_exists.rc == 1
-      become: true
-
-    - name: Install Google Chrome
-      apt:
-        name: pkg=google-chrome-stable state=installed
-        state: installed
-      become: true