Skip to content

Commit

Permalink
turnon quota
Browse files Browse the repository at this point in the history
  • Loading branch information
usmannasir committed Sep 15, 2024
1 parent 27a7162 commit 0eef980
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 0eef980

Please sign in to comment.