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 5979d96 commit 602adf4Copy full SHA for 602adf4
install/vst-install.sh
@@ -211,6 +211,16 @@ if [ "$mx_failed" -eq 1 ]; then
211
exit 1
212
fi
213
214
+# Check for ipv6 on loopback interface
215
+check_lo_ipv6=$(/sbin/ifconfig lo| grep 'inet6 addr')
216
+check_rc_ipv6=$(grep 'scope global dev lo' /etc/rc.local)
217
+if [ ! -z "$check_lo_ipv6)" ] && [ -z "$check_rc_ipv6" ]; then
218
+ ip addr add ::2/128 scope global dev lo
219
+ echo "# Vesta: Workraround for openssl validation func" >> /etc/rc.local
220
+ echo "ip addr add ::2/128 scope global dev lo" >> /etc/rc.local
221
+ chmod a+x /etc/rc.local
222
+fi
223
+
224
225
#----------------------------------------------------------#
226
# Install repository #
0 commit comments