2016-01-13 19:23:15 +00:00
#!/bin/bash
2017-08-03 00:03:53 +00:00
2018-04-27 00:59:12 +00:00
# Check if we were effectively run as root
2018-04-27 01:02:51 +00:00
[ $EUID = 0 ] || { echo "This script needs to be run as root!" ; exit 1; }
2018-04-27 00:59:12 +00:00
2018-08-17 13:23:12 +00:00
# Check for 1GB Memory
2018-06-12 17:50:14 +00:00
totalk = $( awk '/^MemTotal:/{print $2}' /proc/meminfo)
2018-06-12 18:08:45 +00:00
if [ " $totalk " -lt "1000000" ] ; then echo "XOCE Requires at least 1GB Memory!" ; exit 1; fi
2018-06-12 17:50:14 +00:00
2018-08-02 12:51:30 +00:00
distro = $( /usr/bin/lsb_release -is)
2018-08-02 12:52:53 +00:00
if [ " $distro " = "Ubuntu" ] ; then /usr/bin/add-apt-repository multiverse; fi
2018-08-02 12:51:30 +00:00
2018-02-01 15:41:39 +00:00
xo_branch = "master"
xo_server = "https://github.com/vatesfr/xen-orchestra"
2017-08-03 00:08:58 +00:00
n_repo = "https://raw.githubusercontent.com/visionmedia/n/master/bin/n"
yarn_repo = "deb https://dl.yarnpkg.com/debian/ stable main"
yarn_gpg = "https://dl.yarnpkg.com/debian/pubkey.gpg"
2017-08-03 00:10:34 +00:00
n_location = "/usr/local/bin/n"
2018-02-01 15:41:39 +00:00
xo_server_dir = "/opt/xen-orchestra"
2017-08-03 01:37:23 +00:00
systemd_service_dir = "/lib/systemd/system"
xo_service = "xo-server.service"
2017-08-03 00:10:34 +00:00
2019-05-24 12:15:10 +00:00
# Ensures that Yarn dependencies are installed, git, curl, apt-transport-https
2018-04-27 00:59:12 +00:00
/usr/bin/apt-get update
2019-05-24 12:15:10 +00:00
/usr/bin/apt-get --yes install git curl apt-transport-https
2018-04-27 00:59:12 +00:00
2019-05-09 14:37:04 +00:00
#Install yarn
2016-01-13 19:23:15 +00:00
cd /opt
2017-08-04 13:44:09 +00:00
2019-05-09 14:37:04 +00:00
2018-04-27 00:59:12 +00:00
/usr/bin/curl -sS $yarn_gpg | apt-key add -
echo " $yarn_repo " | tee /etc/apt/sources.list.d/yarn.list
/usr/bin/apt-get update
2019-05-09 14:37:04 +00:00
/usr/bin/apt-get install --yes yarn
2017-08-03 01:37:23 +00:00
2018-08-17 13:23:12 +00:00
# Install n
2017-08-03 01:37:23 +00:00
/usr/bin/curl -o $n_location $n_repo
2018-04-27 00:59:12 +00:00
/bin/chmod +x $n_location
2017-08-03 01:37:23 +00:00
2019-05-09 14:37:04 +00:00
# Install node via n
n 8.16
2018-08-17 13:23:12 +00:00
# Symlink node directories
2018-08-17 12:19:27 +00:00
ln -s /usr/bin/node /usr/local/bin/node
2018-08-17 13:23:12 +00:00
# Install XO dependencies
2019-05-24 12:15:10 +00:00
/usr/bin/apt-get install --yes build-essential redis-server libpng-dev git python-minimal libvhdi-utils nfs-common lvm2 cifs-utils
2017-08-03 01:37:23 +00:00
2018-02-07 15:36:56 +00:00
/usr/bin/git clone -b $xo_branch $xo_server
2018-02-01 15:44:58 +00:00
2019-05-14 12:45:11 +00:00
# Disabling the "Built from Source Banner - No Support" Bar across the top of screen
sed -i 's/process.env.XOA_PLAN === 5/process.env.XOA_PLAN === 6/g' /opt/xen-orchestra/packages/xo-web/src/xo-app/index.js
2019-05-01 16:29:01 +00:00
2018-02-01 15:44:58 +00:00
# Patch to allow config restore
2018-02-07 19:41:05 +00:00
sed -i 's/< 5/> 0/g' /opt/xen-orchestra/packages/xo-web/src/xo-app/settings/config/index.js
2018-02-01 15:44:58 +00:00
2018-02-07 15:27:50 +00:00
cd $xo_server_dir
/usr/bin/yarn
/usr/bin/yarn build
cd packages/xo-server
2019-01-17 19:26:27 +00:00
cp sample.config.toml .xo-server.toml
sed -i "s|#'/' = '/path/to/xo-web/dist/'|'/' = '/opt/xen-orchestra/packages/xo-web/dist'|" .xo-server.toml
2016-03-08 20:38:21 +00:00
2018-08-17 12:54:43 +00:00
#Create node_modules directory if doesn't exist
2018-08-17 12:51:34 +00:00
mkdir -p /usr/local/lib/node_modules/
2018-08-17 13:23:12 +00:00
# Symlink all plugins
2019-04-15 17:18:02 +00:00
for source in $( ls -d /opt/xen-orchestra/packages/xo-server-*) ; do
2018-05-02 12:14:04 +00:00
ln -s " $source " /usr/local/lib/node_modules/
done
2017-08-03 14:55:55 +00:00
if [ [ ! -e $systemd_service_dir /$xo_service ] ] ; then
2017-08-03 01:37:23 +00:00
2017-08-03 14:17:23 +00:00
/bin/cat << EOF >> $systemd_service_dir /$xo_service
2018-08-17 13:23:12 +00:00
# Systemd service for XO-Server.
2017-08-03 01:37:23 +00:00
2017-08-03 02:05:56 +00:00
[ Unit]
Description = XO Server
After = network-online.target
2016-03-08 20:38:21 +00:00
2017-08-03 02:05:56 +00:00
[ Service]
2018-02-01 15:41:39 +00:00
WorkingDirectory = /opt/xen-orchestra/packages/xo-server/
2017-08-03 02:05:56 +00:00
ExecStart = /usr/local/bin/node ./bin/xo-server
Restart = always
SyslogIdentifier = xo-server
2016-03-08 20:38:21 +00:00
2017-08-03 02:05:56 +00:00
[ Install]
WantedBy = multi-user.target
2016-03-08 20:38:21 +00:00
EOF
2017-08-03 01:37:23 +00:00
fi
2016-03-08 20:38:21 +00:00
2018-04-27 00:59:12 +00:00
/bin/systemctl daemon-reload
/bin/systemctl enable $xo_service
/bin/systemctl start $xo_service
2018-04-11 14:15:47 +00:00
2018-04-11 14:35:19 +00:00
echo ""
echo ""
2018-04-11 14:54:57 +00:00
echo "Installation complete, open a browser to:" && hostname -I && echo "" && echo "Default Login:" admin@admin.net" Password:" admin"" && echo "" && echo "Don't forget to change your password!"
2018-04-11 14:51:23 +00:00