mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-22 18:00:35 +00:00
9 lines
207 B
Python
9 lines
207 B
Python
from base import Task
|
|
|
|
|
|
class AddSudoPackage(Task):
|
|
description = 'Adding ``sudo\'\' to the image packages'
|
|
|
|
def run(self, info):
|
|
super(AddSudoPackage, self).run(info)
|
|
info.img_packages[0].add('sudo')
|