mirror of
https://github.com/Jarli01/xenorchestra_installer.git
synced 2024-11-23 12:30:45 +01:00
Update xo_install.sh
This commit is contained in:
parent
669c684732
commit
9f2220b36b
@ -3,6 +3,12 @@
|
||||
# Check if we were effectively run as root
|
||||
[ $EUID = 0 ] || { echo "This script needs to be run as root!"; exit 1; }
|
||||
|
||||
#Check for 1GB Memory
|
||||
totalk=$(awk '/^MemTotal:/{print $2}' /proc/meminfo)
|
||||
if [ $totalk < "1000000" ]; then
|
||||
echo "XOCE Requires at least 1GB Memory!"
|
||||
fi
|
||||
|
||||
xo_branch="master"
|
||||
xo_server="https://github.com/vatesfr/xen-orchestra"
|
||||
n_repo="https://raw.githubusercontent.com/visionmedia/n/master/bin/n"
|
||||
|
Loading…
Reference in New Issue
Block a user