aptly_create_repo
Create a new local Debian package repository with a specified name, default distribution, and component. Add optional comments to organize and describe repository details.
Instructions
Create a new local repository in Aptly
Input Schema
Name | Required | Description | Default |
---|---|---|---|
comment | No | Optional comment/description for the repository | |
defaultComponent | No | Default component for packages in this repository | |
defaultDistribution | No | Default distribution for packages in this repository | |
name | Yes | Name of the repository to create |
Input Schema (JSON Schema)
{
"properties": {
"comment": {
"description": "Optional comment/description for the repository",
"type": "string"
},
"defaultComponent": {
"description": "Default component for packages in this repository",
"type": "string"
},
"defaultDistribution": {
"description": "Default distribution for packages in this repository",
"type": "string"
},
"name": {
"description": "Name of the repository to create",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}