verify_package_integrity
Check installed package files for modifications, corruption, or missing components to ensure system integrity on Arch Linux systems.
Instructions
Verify the integrity of installed package files. Detects modified, missing, or corrupted files. Only works on Arch Linux.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| package_name | Yes | Name of the package to verify | |
| thorough | No | Perform thorough check including file attributes. Default: false |
Input Schema (JSON Schema)
{
"properties": {
"package_name": {
"description": "Name of the package to verify",
"type": "string"
},
"thorough": {
"default": false,
"description": "Perform thorough check including file attributes. Default: false",
"type": "boolean"
}
},
"required": [
"package_name"
],
"type": "object"
}