Skip to content

Instantly share code, notes, and snippets.

@manuee
Forked from hexparrot/install_mineos-node
Last active April 5, 2016 18:23
Show Gist options
  • Save manuee/8d465634aa4b171d6cef2c98495a54d1 to your computer and use it in GitHub Desktop.
Save manuee/8d465634aa4b171d6cef2c98495a54d1 to your computer and use it in GitHub Desktop.
Downloads, installs and configures components required for the MineOS Web User Interface on apt-get based systems.
#!/bin/bash
if [ "$EUID" -ne 0 ]
then echo "Please run as root"
exit
fi
# update repositories
curl -sL https://deb.nodesource.com/setup_4.x | bash -
apt-get update
# download the necessary prerequisite components for mineos
apt-get -y install nodejs supervisor git rdiff-backup screen build-essential openjdk-7-jre-headless
# download the most recent mineos web-ui files from github
mkdir -p /usr/games
cd /usr/games
git clone https://github.com/hexparrot/mineos-node.git minecraft
cd minecraft
git config core.filemode false
chmod +x service.js mineos_console.js generate-sslcert.sh webui.js
ln -s /usr/games/minecraft/mineos_console.js /usr/local/bin/mineos
cp mineos.conf /etc/mineos.conf
npm install
# distribute service related files
cp init/supervisor_conf /etc/supervisor/conf.d/mineos.conf
# generate self-signed certificate
./generate-sslcert.sh
# start the background service
supervisorctl reload
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment