mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-16 07:47:35 +01:00
Removed unused configurations by user
Signed-off-by: Dimitris Zlatanidis <d.zlatanidis@gmail.com>
This commit is contained in:
parent
2318f84177
commit
e3074c0daa
3 changed files with 2 additions and 11 deletions
|
@ -1,6 +1,7 @@
|
||||||
4.2.2 - 20/10/2022
|
4.2.2 - 20/10/2022
|
||||||
Updated:
|
Updated:
|
||||||
- Remove version for skip installed option
|
- Removed version for skip installed option
|
||||||
|
- Removed unused configurations
|
||||||
|
|
||||||
4.2.1 - 18/10/2022
|
4.2.1 - 18/10/2022
|
||||||
Added:
|
Added:
|
||||||
|
|
|
@ -3,15 +3,10 @@ configs:
|
||||||
os_arch: x86_64
|
os_arch: x86_64
|
||||||
|
|
||||||
# All necessary paths.
|
# All necessary paths.
|
||||||
tmp_path: /tmp
|
|
||||||
tmp_slpkg: /tmp/slpkg
|
tmp_slpkg: /tmp/slpkg
|
||||||
build_path: /tmp/slpkg/build
|
build_path: /tmp/slpkg/build
|
||||||
download_only: /tmp/slpkg
|
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
|
sbo_repo_path: /var/lib/slpkg/repository
|
||||||
log_packages: /var/log/packages
|
|
||||||
|
|
||||||
# Database name.
|
# Database name.
|
||||||
database: database.slpkg
|
database: database.slpkg
|
||||||
|
|
|
@ -67,15 +67,10 @@ class Configs:
|
||||||
os_arch: str = config['os_arch']
|
os_arch: str = config['os_arch']
|
||||||
|
|
||||||
# All necessary paths
|
# All necessary paths
|
||||||
tmp_path: str = config['tmp_path']
|
|
||||||
tmp_slpkg: str = config['tmp_slpkg']
|
tmp_slpkg: str = config['tmp_slpkg']
|
||||||
build_path: str = config['build_path']
|
build_path: str = config['build_path']
|
||||||
download_only: str = config['download_only']
|
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']
|
sbo_repo_path: str = config['sbo_repo_path']
|
||||||
log_packages: str = config['log_packages']
|
|
||||||
|
|
||||||
# Database name
|
# Database name
|
||||||
database: str = config['database']
|
database: str = config['database']
|
||||||
|
|
Loading…
Reference in a new issue