Browse Source

minimum ram requried: 350mb

Serghey Rodin 13 years ago
parent
commit
34bee00c5b
1 changed files with 4 additions and 1 deletions
  1. 4 1
      install/vst-install.sh

+ 4 - 1
install/vst-install.sh

@@ -131,8 +131,11 @@ if [ ! -z "$conflicts" ] && [ -z "$force" ]; then
 fi
 
 # Check server type
-if [ "$memory" -lt '350000' ]; then
+if [ "$memory" -lt '350000' ] && [ -z "$force" ]; then
     echo "Error: not enought memory to install Vesta Control Panel."
+    echo -e "\nMinimum RAM requried: 350Mb"
+    echo 'If you want to force installation run this script with -f option:'
+    echo "Example: bash $0 --force"
     exit 1
 fi
 srv_type='micro'