summaryrefslogtreecommitdiff
path: root/src/backend/getfs.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-03-09 20:04:59 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-03-09 20:04:59 +0000
commit3734eb8c40f2481b023fbbe741f646a5087e50e5 (patch)
tree95dcfa426ecdb17914ceaef7c9eb6dd24ce937e8 /src/backend/getfs.py
parent4dda01f43e00a2412ee05595cb4d3ec559594f28 (diff)
remotePackagesCsv -> rmt_pcsv; remoteDescriptionsCsv -> rmt_dcsv; localPackagesCsv -> lcl_pcsv; localDatabase -> lcl_db
Diffstat (limited to 'src/backend/getfs.py')
-rw-r--r--src/backend/getfs.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/getfs.py b/src/backend/getfs.py
index 32fb225..676f501 100644
--- a/src/backend/getfs.py
+++ b/src/backend/getfs.py
@@ -17,11 +17,11 @@ portageCacheDir = '/var/cache/packages'
portageDistDir = '/var/cache/distfiles'
portageMetadataDir = '/var/cache/edb'
-remotePackagesCsv = '/var/lib/sisyphus/csv/remotePackagesPre.csv'
-remoteDescriptionsCsv = '/var/lib/sisyphus/csv/remoteDescriptionsPre.csv'
-localPackagesCsv = '/var/lib/sisyphus/csv/localPackagesPre.csv'
+rmt_pcsv = '/var/lib/sisyphus/csv/remotePackagesPre.csv'
+rmt_dcsv = '/var/lib/sisyphus/csv/remoteDescriptionsPre.csv'
+lcl_pcsv = '/var/lib/sisyphus/csv/localPackagesPre.csv'
-localDatabase = '/var/lib/sisyphus/db/sisyphus.db'
+lcl_db = '/var/lib/sisyphus/db/sisyphus.db'
if platform.uname()[4] == 'x86_64':
mirrorCfg = '/etc/sisyphus/sisyphus-mirrors-amd64.conf'