From 0eef980048184f6db637757b67dcfd2aa3113e0e Mon Sep 17 00:00:00 2001 From: usmannasir Date: Sun, 15 Sep 2024 16:45:33 +0500 Subject: [PATCH] turnon quota --- install/install.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/install.py b/install/install.py index d5e8d5206..6cec71c9c 100755 --- a/install/install.py +++ b/install/install.py @@ -181,7 +181,7 @@ def installQuota(self,): command = "find /lib/modules/ -type f -name '*quota_v*.ko*' | sed -n 's|/lib/modules/\([^/]*\)/.*|\1|p' | sort -u" - result = subprocess.check_output(command, shell=True, stderr=subprocess.STDOUT).decode("utf-8").rstrip('\n') + result = subprocess.check_output(command, shell=True).decode("utf-8").rstrip('\n') command = f"apt-get install linux-modules-extra-{result}" preFlightsChecks.call(command, self.distro, command, command, 1, 0, os.EX_OSERR)