summaryrefslogtreecommitdiff
path: root/src/backend/checkEnvironment.py
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-10-30 14:26:52 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-10-30 14:26:52 +0000
commit02b654dc089c570ce81ce5da0c2c48d5d21d3cb8 (patch)
tree2a32a8634b59efc8b9f28ec8d8732cdd6b3b3414 /src/backend/checkEnvironment.py
parent331cd284de1de5f7192e1588b836f89337326784 (diff)
move getEnvironment -> getenv
Diffstat (limited to 'src/backend/checkEnvironment.py')
-rw-r--r--src/backend/checkEnvironment.py42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/backend/checkEnvironment.py b/src/backend/checkEnvironment.py
deleted file mode 100644
index 9613fe6..0000000
--- a/src/backend/checkEnvironment.py
+++ /dev/null
@@ -1,42 +0,0 @@
-#!/usr/bin/python3
-
-import os
-import subprocess
-import sisyphus.getEnvironment
-import sisyphus.getFilesystem
-
-def root():
- return True if os.getuid() == 0 else False
-
-def branch():
- activeBranch = None
-
- if os.path.isdir(os.path.join(sisyphus.getFilesystem.gentooRepoDir, '.git')):
- os.chdir(sisyphus.getFilesystem.gentooRepoDir)
- localBranch = subprocess.check_output(['git', 'rev-parse', '--abbrev-ref', 'HEAD'])
-
- if localBranch.decode().strip() == 'master':
- activeBranch = str('master')
-
- if localBranch.decode().strip() == 'next':
- activeBranch = str('next')
-
- return activeBranch
-
-def sanity():
- activeBranch = branch()
- binhostURL = sisyphus.getEnvironment.binhostURL()
- isSane = int()
-
- if "packages-next" in binhostURL:
- if activeBranch == "next":
- isSane = int(1)
- else:
- isSane = int(0)
- else:
- if activeBranch == "master":
- isSane = int(1)
- else:
- isSane = int(0)
-
- return isSane