mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 15:36:27 +00:00
8 lines
151 B
Python
8 lines
151 B
Python
![]() |
from common import Task
|
||
|
|
||
|
|
||
|
class AddSudoPackage(Task):
|
||
|
def run(self, info):
|
||
|
super(AddSudoPackage, self).run(info)
|
||
|
info.img_packages[0].add('sudo')
|