From df8c91b30605f8c280edc81a168e31e911ac246e Mon Sep 17 00:00:00 2001 From: weishu Date: Sat, 21 Oct 2023 15:33:10 +0800 Subject: [PATCH] profile: Add adb,system profile template --- website/docs/public/templates/adb | 1 + website/docs/public/templates/system | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 website/docs/public/templates/system diff --git a/website/docs/public/templates/adb b/website/docs/public/templates/adb index 2493dfc7..8d404ee6 100644 --- a/website/docs/public/templates/adb +++ b/website/docs/public/templates/adb @@ -1,6 +1,7 @@ { "id":"adb", "name":"Adb", + "author":"kernelsu.org", "description":"Minimal rules required by most apps using ADB privilege.", "uid":2000, "gid":2000, diff --git a/website/docs/public/templates/system b/website/docs/public/templates/system new file mode 100644 index 00000000..f2c0ec28 --- /dev/null +++ b/website/docs/public/templates/system @@ -0,0 +1,16 @@ +{ + "id":"system", + "author":"kernelsu.org", + "name":"system ", + "description":"Run as Android System", + "uid":1000, + "gid":1000, + "groups":[ + "SYSTEM" + ], + "capabilities":[ + "CAP_DAC_READ_SEARCH" + ], + "context":"u:r:su:s0", + "namespace":"INHERITED" +}