diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2020-06-06 16:22:04 +0100 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2020-06-06 16:22:04 +0100 |
commit | ac0efd1bd6c703147bd8d3caedf489fab87d6131 (patch) | |
tree | e6af981b6e90be35447dbb88dd276a4d8ff2d47e /src/backend/setprofile.py | |
parent | 49e6ab19aa461151132dfb4f1cf962d4ef403c66 (diff) |
big rewrite : split the backend in smaller pieces, rework the cli frontend to work with the new backend ... gui frontend wip
Diffstat (limited to 'src/backend/setprofile.py')
-rw-r--r-- | src/backend/setprofile.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/backend/setprofile.py b/src/backend/setprofile.py new file mode 100644 index 0000000..c78269f --- /dev/null +++ b/src/backend/setprofile.py @@ -0,0 +1,9 @@ +#!/usr/bin/python3 + +import animation +import subprocess + +@animation.wait('setting up hardened profile') +def start(): + subprocess.call(['eselect', 'profile', 'set', 'default/linux/amd64/17.0/hardened']) + subprocess.call(['env-update']) |