Last active
May 15, 2017 08:45
-
-
Save jeroen/ec571226677e1539efba to your computer and use it in GitHub Desktop.
Silent install of OpenCPU
This file contains 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
# Prevent postfix from prompting for hostname | |
sudo debconf-set-selections <<< "postfix postfix/mailname string your.hostname.com" | |
sudo debconf-set-selections <<< "postfix postfix/main_mailer_type string 'Internet Site'" | |
sudo apt-get install -y postfix | |
# Install OpenCPU | |
sudo add-apt-repository -y ppa:opencpu/opencpu-2.0 | |
sudo apt-get update | |
sudo apt-get install -y opencpu-server |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment