You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: mirrord-schema.json
+14-2
Original file line number
Diff line number
Diff line change
@@ -112,7 +112,7 @@
112
112
},
113
113
"sip_binaries": {
114
114
"title": "sip_binaries {#root-sip_binaries}",
115
-
"description": "Binaries to patch (macOS SIP).\n\nUse this when mirrord isn't loaded to protected binaries that weren't automatically patched.\n\nRuns `endswith` on the binary path (so `bash` would apply to any binary ending with `bash` while `/usr/bin/bash` would apply only for that binary).\n\n```json { \"sip_binaries\": \"bash;python\" } ```",
115
+
"description": "Binaries to patch (macOS SIP).\n\nUse this when mirrord isn't loaded to protected binaries that weren't automatically patched.\n\nRuns `endswith` on the binary path (so `bash` would apply to any binary ending with `bash` while `/usr/bin/bash` would apply only for that binary).\n\n```json { \"sip_binaries\": [\"bash\", \"python\"] } ```",
116
116
"anyOf": [
117
117
{
118
118
"$ref": "#/definitions/VecOrSingle_for_String"
@@ -132,7 +132,19 @@
132
132
},
133
133
"skip_processes": {
134
134
"title": "skip_processes {#root-skip_processes}",
135
-
"description": "Allows mirrord to skip unwanted processes.\n\nUseful when process A spawns process B, and the user wants mirrord to operate only on process B. Accepts a single value, or multiple values separated by `;`.\n\n```json { \"skip_processes\": \"bash;node\" } ```",
135
+
"description": "Allows mirrord to skip unwanted processes.\n\nUseful when process A spawns process B, and the user wants mirrord to operate only on process B. Accepts a single value, or an array of values.\n\n```json { \"skip_processes\": [\"bash\", \"node\"] } ```",
136
+
"anyOf": [
137
+
{
138
+
"$ref": "#/definitions/VecOrSingle_for_String"
139
+
},
140
+
{
141
+
"type": "null"
142
+
}
143
+
]
144
+
},
145
+
"skip_sip": {
146
+
"title": "skip_sip {#root-skip_sip}",
147
+
"description": "Allows mirrord to skip patching (macOS SIP) unwanted processes.\n\nWhen patching is skipped, mirrord will no longer be able to load into the process and its child processes.",
0 commit comments