3 Commits

Author SHA1 Message Date
Dan Pollak
95c80ae455 Remove sudo 2024-01-05 07:18:27 -06:00
Dan Pollak
d12423d78c Node LTS >> Node 18 2023-11-03 19:53:27 -05:00
Dan Pollak
910e9c2cae Update steps to install 2022-11-07 09:09:57 -06:00
2 changed files with 4 additions and 4 deletions

View File

@@ -23,8 +23,8 @@ Xen-Orchestra (Community Edition) allows you to administer Citrix Hypervisor (ak
Run the following steps from a root shell on your **Ubuntu or Debian** host.
curl https://raw.githubusercontent.com/Jarli01/xenorchestra_installer/master/xo_install.sh | sudo bash
<password>
sudo bash
bash -c "$(curl https://raw.githubusercontent.com/Jarli01/xenorchestra_installer/master/xo_install.sh)"
The default username and password are applied, admin@admin.net and admin for the password

View File

@@ -27,7 +27,7 @@ xo_service="xo-server.service"
#Install yarn
cd /opt
/usr/bin/curl -sSL $yarn_gpg | gpg --dearmor | sudo tee /usr/share/keyrings/yarnkey.gpg >/dev/null
/usr/bin/curl -sSL $yarn_gpg | gpg --dearmor | tee /usr/share/keyrings/yarnkey.gpg >/dev/null
echo "$yarn_repo" | tee /etc/apt/sources.list.d/yarn.list
/usr/bin/apt-get update
/usr/bin/apt-get install --yes yarn
@@ -37,7 +37,7 @@ echo "$yarn_repo" | tee /etc/apt/sources.list.d/yarn.list
/bin/chmod +x $n_location
# Install node via n
n lts
n 18
# Symlink node directories
ln -s /usr/bin/node /usr/local/bin/node