installer: Log when cleaning up the unattended files
Similarly to what's already done in installertreeinfo.py, let's log when removing the files used during the unattended installation. Reviewed-by: Cole Robinson <crobinso@redhat.com> Signed-off-by: Fabiano Fidêncio <fidencio@redhat.com>
This commit is contained in:
parent
98bd275969
commit
2dd006d6f2
|
@ -141,6 +141,7 @@ class Installer(object):
|
||||||
|
|
||||||
def _cleanup_unattended_files(self):
|
def _cleanup_unattended_files(self):
|
||||||
for f in self._unattended_files:
|
for f in self._unattended_files:
|
||||||
|
logging.debug("Removing %s", str(f))
|
||||||
os.unlink(f)
|
os.unlink(f)
|
||||||
|
|
||||||
def _build_boot_order(self, guest, bootdev):
|
def _build_boot_order(self, guest, bootdev):
|
||||||
|
|
Loading…
Reference in New Issue