Removed unused configurations by user

Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
Dimitris Zlatanidis 2022-10-21 21:08:06 +03:00
parent 2318f84177
commit e3074c0daa
3 changed files with 2 additions and 11 deletions

View file

@ -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:

View file

@ -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

View file

@ -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']