Skip to content
Snippets Groups Projects
Commit e7cbfb0a authored by Nikos Skalkotos's avatar Nikos Skalkotos
Browse files

Add get_sysprep_by_name method in os_type classes

This method returns a sysprep object with a given name. Now,
(enable,disable)_sysprep work with sysprep objects instead of sysprep
names
parent f8cccab5
No related branches found
No related tags found
No related merge requests found
......@@ -195,10 +195,10 @@ def image_creator():
out.output()
for sysprep in options.disabled_syspreps:
image_os.disable_sysprep(sysprep)
image_os.disable_sysprep(image_os.get_sysprep_by_name(sysprep))
for sysprep in options.enabled_syspreps:
image_os.enable_sysprep(sysprep)
image_os.enable_sysprep(image_os.get_sysprep_by_name(sysprep))
if options.print_sysprep:
image_os.print_syspreps()
......
......@@ -97,10 +97,10 @@ class OSBase(object):
return (obj.__name__.replace('_', '-'), textwrap.dedent(obj.__doc__))
def _sysprep_change_status(self, name, status):
def get_sysprep_by_name(self, name):
"""Returns the sysprep object with the given name"""
error_msg = "Syprep operation %s does not exist for %s" % \
(name, self.__class__.__name__)
(name, self.__class__.__name__)
method_name = name.replace('-', '_')
method = None
......@@ -112,15 +112,15 @@ class OSBase(object):
if not self._is_sysprep(method):
raise FatalError(error_msg)
setattr(method.im_func, 'enabled', status)
return method
def enable_sysprep(self, name):
def enable_sysprep(self, obj):
"""Enable a system preperation operation"""
self._sysprep_change_status(name, True)
setattr(obj.im_func, 'enabled', True)
def disable_sysprep(self, name):
def disable_sysprep(self, obj):
"""Disable a system preperation operation"""
self._sysprep_change_status(name, False)
setattr(obj.im_func, 'enabled', False)
def print_syspreps(self):
"""Print enabled and disabled system preperation operations."""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment