-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
/
Copy pathauthchanger.ts
86 lines (86 loc) · 2.31 KB
/
authchanger.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
const completionSpec: Fig.Spec = {
name: "authchanger",
parserDirectives: {
flagsArePosixNoncompliant: true,
},
description:
"Authchanger is a utility included with Jamf Connect to help you manage the authorization database used by macOS to determine how the login process progresses",
options: [
{
name: ["-help", "-h"],
description: "Show help for authchanger",
},
{
name: "-version",
description: "Prints the version number",
},
{
name: "-print",
description: "Prints the current list of authorization mechanisms",
},
{
name: "-debug",
description:
"Does a dry run of the changes and prints out what would have happened",
},
{
name: "-reset",
description: "Resets the login screen to the factory settings",
},
{
name: "-demobilize",
description: "Sets up Jamf Connect Login to only demobilze accounts",
},
{
name: "-notify",
description:
"Adds the DEP Notify addition to the corresponding -AD, or -Setup argument",
},
{
name: "-setup",
description:
"Adds the DEP Notify addition to the corresponding -AD, or -Setup argument",
},
{
name: "-jamfconnect",
description: "Enables Jamf Connect 2.0 login mechanisms",
},
{
name: "-verbose",
description: "Enables verbose logging",
},
{
name: "-prelogin",
description: "Mechs to be used before the actual UI is shown",
},
{
name: "-preauth",
description:
"Mechs to be used between the login UI and actual authentication",
},
{
name: "-postauth",
description: "Mechs to be used after system authentication",
},
{
name: "-customrule",
description:
"Allows the printout of any authorizationDB rule as well as setting of that rule to any custom mechanism(s)",
},
{
name: "-sysprefs",
description:
"Enables Azure authentication for the Network Preference Pane",
},
{
name: "-sysprefsreset",
description:
"Removes Azure authentication for the Network Preference Pane",
},
{
name: "-defaultjcright",
description: "Adds the mechanism to be used with the sudosaml binary",
},
],
};
export default completionSpec;