diff options
Diffstat (limited to 'src/backend/filesystem.py')
-rw-r--r-- | src/backend/filesystem.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/backend/filesystem.py b/src/backend/filesystem.py index cfbfa86..4934108 100644 --- a/src/backend/filesystem.py +++ b/src/backend/filesystem.py @@ -1,5 +1,7 @@ #!/usr/bin/python3 +import platform + remoteGitlab = 'https://gitlab.com/redcore' remotePagure = 'https://pagure.io/redcore' @@ -19,4 +21,8 @@ localPackagesCsv = '/var/lib/sisyphus/csv/localPackagesPre.csv' localDatabase = '/var/lib/sisyphus/db/sisyphus.db' -mirrorCfg = '/etc/sisyphus/mirrors.conf' +if platform.uname()[4] == 'x86_64': + mirrorCfg = '/etc/sisyphus/sisyphus-mirrors-amd64.conf' + +if platform.uname()[4] == 'aarch64': + mirrorCfg = '/etc/sisyphus/sisyphus-mirrors-arm64.conf' |