Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add script to install Chrome
  • Loading branch information
Jia Shen Boon authored and Jia Shen Boon committed Jun 20, 2017
1 parent 69a2c4f commit ce94ff9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion common/export-instance-variables
@@ -1,4 +1,4 @@
UBUNTU_REMOTE_HOST="ec2-34-211-150-177.us-west-2.compute.amazonaws.com"
UBUNTU_REMOTE_HOST="ec2-52-3-223-50.compute-1.amazonaws.com"
RHEL_REMOTE_HOST="ec2-54-212-235-45.us-west-2.compute.amazonaws.com"
AL_REMOTE_HOST="ec2-34-211-111-59.us-west-2.compute.amazonaws.com"

Expand Down
8 changes: 8 additions & 0 deletions rdpToUbuntu/install-chrome.sh
@@ -0,0 +1,8 @@
#!/bin/bash

# Install Chrome
# https://askubuntu.com/questions/510056/how-to-install-google-chrome
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list'
sudo apt-get update -y
sudo apt-get install google-chrome-stable -y

0 comments on commit ce94ff9

Please sign in to comment.