summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2024-06-22 13:12:00 +0100
committerV3n3RiX <venerix@koprulu.sector>2024-06-22 13:12:00 +0100
commit84df9e9070477c3d3a7f2067edeb3f14f82560ed (patch)
tree1f1814dd8c764fdcf550c1e81a8187faa35952db /src
parentace4c1fb095f4e55f8f8e7693057404a98ab6e4d (diff)
migrate to profile 23.0next
Diffstat (limited to 'src')
-rw-r--r--src/backend/setprofile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/setprofile.py b/src/backend/setprofile.py
index 5d2f42d..e4da0aa 100644
--- a/src/backend/setprofile.py
+++ b/src/backend/setprofile.py
@@ -17,7 +17,7 @@ signal.signal(signal.SIGINT, sigint_handler)
def start():
if platform.uname()[4] == 'x86_64':
e_exe = subprocess.Popen(
- ['eselect', 'profile', 'set', 'default/linux/amd64/17.1/hardened'])
+ ['eselect', 'profile', 'set', 'default/linux/amd64/23.0/split-usr/hardened'])
try:
e_exe.wait()
except KeyboardInterrupt:
@@ -30,7 +30,7 @@ def start():
if platform.uname()[4] == 'aarch64':
e_exe = subprocess.Popen(
- ['eselect', 'profile', 'set', 'default/linux/arm64/17.0'])
+ ['eselect', 'profile', 'set', 'default/linux/arm64/23.0/split-usr'])
try:
e_exe.wait()
except KeyboardInterrupt: