mirror of
https://github.com/Jarli01/xenorchestra_installer.git
synced 2024-11-23 12:30:45 +01:00
1969843305
Required component for file level restore functionality.
40 lines
1.2 KiB
Bash
40 lines
1.2 KiB
Bash
#!/bin/bash
|
|
sudo apt-get install --yes nfs-common
|
|
cd /opt
|
|
curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -
|
|
sudo apt-get install --yes nodejs
|
|
curl -o /usr/local/bin/n https://raw.githubusercontent.com/visionmedia/n/master/bin/n
|
|
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
|
|
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
|
|
sudo cp sample.config.yaml .xo-server.yaml
|
|
sudo sed -i /mounts/a\\" '/': '/opt/xo-web/dist'" .xo-server.yaml
|
|
cd /opt/xo-web
|
|
sudo npm i lodash.trim@3.0.1
|
|
sudo npm install
|
|
sudo npm run build
|
|
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
|