From e5aa2b539dca3c9d8cbd89b232e81eff67c0bf87 Mon Sep 17 00:00:00 2001 From: usmannasir Date: Mon, 16 Sep 2024 13:16:03 +0500 Subject: [PATCH] added quoata install function --- install/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/install.py b/install/install.py index 8e04a9999..186eb7098 100755 --- a/install/install.py +++ b/install/install.py @@ -195,7 +195,7 @@ def installQuota(self,): command = 'uname -r' ffResult = subprocess.run(command, capture_output=True, text=True, shell=True) - ffResult = result.stdout.rstrip('\n') + ffResult = ffResult.stdout.rstrip('\n') command = f"apt-get install linux-modules-extra-{ffResult}" preFlightsChecks.call(command, self.distro, command, command, 1, 0, os.EX_OSERR)