Updated all apt-get installs with apt-get -y to avoid prompts during installation.
This commit is contained in:
parent
04d55ef35e
commit
f76bc6ffc4
1 changed files with 6 additions and 6 deletions
|
|
@ -12,17 +12,17 @@ shopt -s extglob
|
||||||
|
|
||||||
# Install build tools
|
# Install build tools
|
||||||
echo "Installing build tools.."
|
echo "Installing build tools.."
|
||||||
sudo apt-get install build-essential libxslt1.1 libxslt1-dev libxml2
|
sudo apt-get -y install build-essential libxslt1.1 libxslt1-dev libxml2
|
||||||
echo "..Done installing build tools"
|
echo "..Done installing build tools"
|
||||||
|
|
||||||
# Install Ruby 1.8.7
|
# Install Ruby 1.8.7
|
||||||
echo "Installing ruby-full Ruby 1.8.7.."
|
echo "Installing ruby-full Ruby 1.8.7.."
|
||||||
sudo apt-get install ruby-full
|
sudo apt-get -y install ruby-full
|
||||||
echo "..Done installing Ruby"
|
echo "..Done installing Ruby"
|
||||||
|
|
||||||
# Install Rake
|
# Install Rake
|
||||||
echo "Installing rake.."
|
echo "Installing rake.."
|
||||||
sudo apt-get install rake
|
sudo apt-get -y install rake
|
||||||
echo "..Done installing rake"
|
echo "..Done installing rake"
|
||||||
|
|
||||||
# Get the current release and install mongodb
|
# Get the current release and install mongodb
|
||||||
|
|
@ -38,17 +38,17 @@ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv 7F0CEB10
|
||||||
echo "."
|
echo "."
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
echo "."
|
echo "."
|
||||||
sudo apt-get install mongodb-stable
|
sudo apt-get -y install mongodb-stable
|
||||||
echo "Done installing monngodb-stable.."
|
echo "Done installing monngodb-stable.."
|
||||||
|
|
||||||
# Install imagemagick
|
# Install imagemagick
|
||||||
echo "Installing imagemagick.."
|
echo "Installing imagemagick.."
|
||||||
sudo apt-get install imagemagick libmagick9-dev
|
sudo apt-get -y install imagemagick libmagick9-dev
|
||||||
echo "Installed imagemagick.."
|
echo "Installed imagemagick.."
|
||||||
|
|
||||||
# Install git-core
|
# Install git-core
|
||||||
echo "Installing git-core.."
|
echo "Installing git-core.."
|
||||||
sudo apt-get install git-core
|
sudo apt-get -y install git-core
|
||||||
echo "Installed git-core.."
|
echo "Installed git-core.."
|
||||||
|
|
||||||
# Setting up ruby gems
|
# Setting up ruby gems
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue