Skip to content

Commit

Permalink
added quoata install function
Browse files Browse the repository at this point in the history
  • Loading branch information
usmannasir committed Sep 16, 2024
1 parent f95ebc1 commit e5aa2b5
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 @@ -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)
Expand Down

0 comments on commit e5aa2b5

Please sign in to comment.