From d769e5decc9ca04f8fefcbb4879a779f0c67a3c5 Mon Sep 17 00:00:00 2001 From: "Donald A. Cupp Jr." Date: Sun, 22 Dec 2024 14:43:49 -0600 Subject: [PATCH] new file: ts/etc/admin_token.json new file: ts/etc/user_token.json --- ts/etc/admin_token.json | 10 ++++++++++ ts/etc/user_token.json | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100644 ts/etc/admin_token.json create mode 100644 ts/etc/user_token.json diff --git a/ts/etc/admin_token.json b/ts/etc/admin_token.json new file mode 100644 index 0000000..ccc9844 --- /dev/null +++ b/ts/etc/admin_token.json @@ -0,0 +1,10 @@ +{ + "type": "luks2", + "keyslots": ["0"], + "token": { + "type": "custom", + "data": { + "role": "Admin" + } + } +} diff --git a/ts/etc/user_token.json b/ts/etc/user_token.json new file mode 100644 index 0000000..7fbadf7 --- /dev/null +++ b/ts/etc/user_token.json @@ -0,0 +1,10 @@ +{ + "type": "luks2", + "keyslots": ["1"], + "token": { + "type": "custom", + "data": { + "role": "User" + } + } +}