|
|
@@ -306,6 +306,13 @@ if [ ! -e '/usr/bin/wget' ]; then
|
|
|
check_result $? "Can't install wget"
|
|
|
fi
|
|
|
|
|
|
+# Checking curl
|
|
|
+if [ ! -e '/usr/bin/curl' ]; then
|
|
|
+ echo "[ * ] Installing curl..."
|
|
|
+ apt-get -y install curl >> $LOG
|
|
|
+ check_result $? "Can't install curl"
|
|
|
+fi
|
|
|
+
|
|
|
# Check if apt-transport-https is installed
|
|
|
if [ ! -e '/usr/lib/apt/methods/https' ]; then
|
|
|
echo "[ * ] Installing apt-transport-https..."
|