diff options
Diffstat (limited to 'src/live')
-rw-r--r-- | src/live/ogOperations.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/live/ogOperations.py b/src/live/ogOperations.py index 98528a7..2ae44aa 100644 --- a/src/live/ogOperations.py +++ b/src/live/ogOperations.py @@ -500,8 +500,9 @@ class OgLiveOperations: logging.info(f'Request to restore image {name}.img via {ctype} from {repo}') if shutil.which('restoreImageCustom'): - restoreImageCustom(repo, name, disk, partition, ctype) - elif 'UNICAST' in ctype: + logging.warning(f'Ignoring restoreImageCustom, use postconfiguration scripts instead.') + + if 'UNICAST' in ctype: cache = 'DIRECT' not in ctype self._restore_image_unicast(repo, name, partdev, cache) elif ctype == 'TIPTORRENT': |