From 4c0904d8da3daf9dc1fc688e09ba4a21153d2ac9 Mon Sep 17 00:00:00 2001 From: "Jose M. Guisado" Date: Tue, 18 Apr 2023 10:51:57 +0200 Subject: [PATCH] utils: rename inventory.py to sw_inventory.py Rename software inventory file to sw_inventory to better distinguish it from a future hardware inventory code. In the future sw_inventory and hw_inventory might be merged together once each file is tidied up. --- src/live/ogOperations.py | 2 +- src/utils/{inventory.py => sw_inventory.py} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/utils/{inventory.py => sw_inventory.py} (100%) diff --git a/src/live/ogOperations.py b/src/live/ogOperations.py index 0e31cea..f11b221 100644 --- a/src/live/ogOperations.py +++ b/src/live/ogOperations.py @@ -30,7 +30,7 @@ from src.utils.probe import os_probe, cache_probe from src.utils.disk import * from src.utils.cache import generate_cache_txt, umount_cache, init_cache from src.utils.tiptorrent import * -from src.utils.inventory import get_package_set +from src.utils.sw_inventory import get_package_set OG_SHELL = '/bin/bash' diff --git a/src/utils/inventory.py b/src/utils/sw_inventory.py similarity index 100% rename from src/utils/inventory.py rename to src/utils/sw_inventory.py