We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a5f8d0 commit 34bee00Copy full SHA for 34bee00
install/vst-install.sh
@@ -131,8 +131,11 @@ if [ ! -z "$conflicts" ] && [ -z "$force" ]; then
131
fi
132
133
# Check server type
134
-if [ "$memory" -lt '350000' ]; then
+if [ "$memory" -lt '350000' ] && [ -z "$force" ]; then
135
echo "Error: not enought memory to install Vesta Control Panel."
136
+ echo -e "\nMinimum RAM requried: 350Mb"
137
+ echo 'If you want to force installation run this script with -f option:'
138
+ echo "Example: bash $0 --force"
139
exit 1
140
141
srv_type='micro'
0 commit comments