mark_as_explicit
Prevent packages from being removed as orphans by marking them as explicitly installed on Arch Linux systems.
Instructions
Mark a package as explicitly installed. Prevents it from being removed as an orphan. Only works on Arch Linux.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| package_name | Yes | Name of the package to mark as explicit |
Input Schema (JSON Schema)
{
"properties": {
"package_name": {
"description": "Name of the package to mark as explicit",
"type": "string"
}
},
"required": [
"package_name"
],
"type": "object"
}