From 8fe8ed52283446047fb294aaff37ff503e9715ea Mon Sep 17 00:00:00 2001 From: Usman Nasir Date: Wed, 13 Nov 2019 19:37:55 +0500 Subject: [PATCH] dont stop on repo fail --- install/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/install.py b/install/install.py index 16fa2610a..389b73832 100755 --- a/install/install.py +++ b/install/install.py @@ -468,7 +468,7 @@ class preFlightsChecks: preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR) else: command = 'yum -y install http://repo.iotti.biz/CentOS/7/noarch/lux-release-7-1.noarch.rpm' - preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR) + preFlightsChecks.call(command, self.distro, command, command, 1, 0, os.EX_OSERR) command = 'yum install git -y' preFlightsChecks.call(command, self.distro, command, command, 1, 1, os.EX_OSERR)