XenOrchestra_CE_Install/xo_install.sh

64 lines
1.8 KiB
Bash
Raw Normal View History

2016-01-13 20:23:15 +01:00
#!/bin/bash
xo_branch="stable"
xo_server="https://github.com/vatesfr/xo-server"
xo_web="https://github.com/vatesfr/xo-web"
n_repo="https://raw.githubusercontent.com/visionmedia/n/master/bin/n"
yarn_repo="deb https://dl.yarnpkg.com/debian/ stable main"
node_source="https://deb.nodesource.com/setup_5.x"
yarn_gpg="https://dl.yarnpkg.com/debian/pubkey.gpg"
2017-08-03 02:10:34 +02:00
n_location="/usr/local/bin/n"
xo_server_dir="/opt/xo-server"
xo_web_dir="/opt/xo-web"
systemd_service_dir="/lib/systemd/system"
xo_service="xo-server.service"
2017-08-03 02:10:34 +02:00
#Install node and yarn
2016-01-13 20:23:15 +01:00
cd /opt
/usr/bin/curl -sL $node_source | sudo -E bash -
/usr/bin/curl -sS $yarn_gpg | sudo apt-key add -
echo "$yarn_repo" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo /usr/bin/apt-get update
sudo /usr/bin/apt-get install --yes nodejs yarn
#Install n
/usr/bin/curl -o $n_location $n_repo
sudo /bin/chmod +x $n_location
sudo /usr/local/bin/n stable
#Install XO dependencies
sudo /usr/bin/apt-get install --yes build-essential redis-server libpng-dev git python-minimal libvhdi-utils nfs-common
/usr/bin/git clone -b $xo_branch $xo_server
/usr/bin/git clone -b $xo_branch $xo_web
cd $xo_server_dir
2016-01-13 20:23:15 +01:00
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 "s|#'/': '/path/to/xo-web/dist/'|'/': '/opt/xo-web/dist'|" .xo-server.yaml
cd $xo_web_dir
yarn install --force
2016-03-08 21:38:21 +01:00
if [[ ! -e $xo_systemd_service ]] ; then
/bin/cat << EOF >> $xo_systemd_service
# systemd service for XO-Server.
[Unit]
Description= XO Server
After=network-online.target
2016-03-08 21:38:21 +01:00
[Service]
WorkingDirectory=/opt/xo-server/
ExecStart=/usr/local/bin/node ./bin/xo-server
Restart=always
SyslogIdentifier=xo-server
2016-03-08 21:38:21 +01:00
[Install]
WantedBy=multi-user.target
2016-03-08 21:38:21 +01:00
EOF
fi
2016-03-08 21:38:21 +01:00
sudo /bin/chmod +x $systemd_service_dir/$xo_service
sudo /bin/systemctl enable $xo_service
sudo /bin/systemctl start $xo_service