From e3074c0daaa2aa10c5e4bdd21741b3e2cb3ad60c Mon Sep 17 00:00:00 2001 From: Dimitris Zlatanidis Date: Fri, 21 Oct 2022 21:08:06 +0300 Subject: [PATCH] Removed unused configurations by user Signed-off-by: Dimitris Zlatanidis --- ChangeLog.txt | 3 ++- configs/slpkg.yml | 5 ----- slpkg/configs.py | 5 ----- 3 files changed, 2 insertions(+), 11 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index b721f724..d03974da 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,6 +1,7 @@ 4.2.2 - 20/10/2022 Updated: -- Remove version for skip installed option +- Removed version for skip installed option +- Removed unused configurations 4.2.1 - 18/10/2022 Added: diff --git a/configs/slpkg.yml b/configs/slpkg.yml index 889b3fc4..df7bf954 100644 --- a/configs/slpkg.yml +++ b/configs/slpkg.yml @@ -3,15 +3,10 @@ configs: os_arch: x86_64 # All necessary paths. - tmp_path: /tmp tmp_slpkg: /tmp/slpkg build_path: /tmp/slpkg/build download_only: /tmp/slpkg - lib_path: /var/lib/slpkg - etc_path: /etc/slpkg - db_path: /var/lib/slpkg/database sbo_repo_path: /var/lib/slpkg/repository - log_packages: /var/log/packages # Database name. database: database.slpkg diff --git a/slpkg/configs.py b/slpkg/configs.py index 0c3d2c84..d79dab7f 100644 --- a/slpkg/configs.py +++ b/slpkg/configs.py @@ -67,15 +67,10 @@ class Configs: os_arch: str = config['os_arch'] # All necessary paths - tmp_path: str = config['tmp_path'] tmp_slpkg: str = config['tmp_slpkg'] build_path: str = config['build_path'] download_only: str = config['download_only'] - lib_path: str = config['lib_path'] - etc_path: str = config['etc_path'] - db_path: str = config['db_path'] sbo_repo_path: str = config['sbo_repo_path'] - log_packages: str = config['log_packages'] # Database name database: str = config['database']