XenOrchestra_CE_Install/xo_install.sh

41 lines
1.3 KiB
Bash
Raw Normal View History

2016-01-13 20:23:15 +01:00
#!/bin/bash
2016-01-26 21:35:27 +01:00
sudo apt-get install --yes nfs-common
2016-01-13 20:23:15 +01:00
cd /opt
curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
2017-03-07 13:31:55 +01:00
sudo apt-get update
sudo apt-get install --yes nodejs yarn
2016-01-13 20:23:15 +01:00
curl -o /usr/local/bin/n https://raw.githubusercontent.com/visionmedia/n/master/bin/n
2016-01-14 03:28:04 +01:00
sudo chmod +x /usr/local/bin/n
sudo n stable
sudo apt-get install --yes build-essential redis-server libpng-dev git python-minimal libvhdi-utils
2016-01-13 20:23:15 +01:00
git clone -b stable https://github.com/vatesfr/xo-server
git clone -b stable https://github.com/vatesfr/xo-web
cd xo-server
sudo npm install && npm run build
2016-01-14 03:28:04 +01:00
sudo cp sample.config.yaml .xo-server.yaml
sudo sed -i /mounts/a\\" '/': '/opt/xo-web/dist'" .xo-server.yaml
2016-01-13 20:23:15 +01:00
cd /opt/xo-web
yarn install --force
2016-03-08 21:38:21 +01:00
cat > /etc/systemd/system/xo-server.service <<EOF
# systemd service for XO-Server.
[Unit]
Description= XO Server
After=network-online.target
[Service]
WorkingDirectory=/opt/xo-server/
ExecStart=/usr/local/bin/node ./bin/xo-server
Restart=always
SyslogIdentifier=xo-server
[Install]
WantedBy=multi-user.target
EOF
sudo chmod +x /etc/systemd/system/xo-server.service
sudo systemctl enable xo-server.service
sudo systemctl start xo-server.service