aptly_add_packages
Add packages to a Debian repository from uploaded files by specifying the repository name and directory. Optionally, select specific files to include.
Instructions
Add packages to a repository from uploaded files
Input Schema
Name | Required | Description | Default |
---|---|---|---|
directory | Yes | Upload directory containing the package files | |
files | No | Optional list of specific files to add (if not provided, adds all files from directory) | |
repoName | Yes | Name of the repository to add packages to |
Input Schema (JSON Schema)
{
"properties": {
"directory": {
"description": "Upload directory containing the package files",
"type": "string"
},
"files": {
"description": "Optional list of specific files to add (if not provided, adds all files from directory)",
"items": {
"type": "string"
},
"type": "array"
},
"repoName": {
"description": "Name of the repository to add packages to",
"type": "string"
}
},
"required": [
"repoName",
"directory"
],
"type": "object"
}