Created
October 18, 2014 08:49
-
-
Save omarqureshi/ad3d01c2dc6b8b1248c2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# upgrade all packages | |
export DEBIAN_FRONTEND=noninteractive | |
apt-get update | |
apt-get -y upgrade | |
# Install brightbox ruby repository | |
apt-get install -y python-software-properties | |
apt-add-repository -y ppa:brightbox/ruby-ng | |
# Clean up | |
export DEBIAN_FRONTEND=dialog |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment