From c941b923b44dc9092c835fad1a480155bf512d42 Mon Sep 17 00:00:00 2001 From: Jakob Kaivo Date: Thu, 18 Feb 2021 12:19:57 -0500 Subject: correct keyword authorized -> authorize --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b2a8195..a8c0164 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ first column), or a directive. Directives are of the form: [command] -Where `` is one of `authorized`, `authenticate`, or `deny`; +Where `` is one of `authorize`, `authenticate`, or `deny`; `` is either a username or a group name prepended with ':', and `[command]` is an optional command. Tokens must be separated by exactly one space. Additional white space is not allowed. @@ -51,7 +51,7 @@ The entire configuration file is parsed whenever `privexec` invokes `check`. Any syntax errors will result in failure. Privilege checking is performed so as to be most restrictive. In order from least to most: - `authorized` - The user is authorized to execute the associate command + `authorize` - The user is authorized to execute the associate command without further interaction. `authenticate` - The user must authenticate themself before the command @@ -63,15 +63,15 @@ A user name match has higher precedence than a group match, and a match containing a program name has higher precedence than a match without the program name. So the total ordering of precedence (from least to most) is: - authorized :group + authorize :group authenticate :group deny :group - authorized :group command + authorize :group command authenticate :group command deny :group command - authorized user + authorize user authenticate user deny user - authorized user command + authorize user command authenticate user command deny user command -- cgit v1.2.1