aptly_create_snapshot
Generate a snapshot from a specified Debian repository to capture its current state, including package versions, for backup or deployment purposes. Provide a name and optional description for the snapshot.
Instructions
Create a snapshot from a repository
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Optional description for the snapshot | |
name | Yes | Name for the new snapshot | |
repoName | Yes | Name of the repository to create snapshot from |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Optional description for the snapshot",
"type": "string"
},
"name": {
"description": "Name for the new snapshot",
"type": "string"
},
"repoName": {
"description": "Name of the repository to create snapshot from",
"type": "string"
}
},
"required": [
"name",
"repoName"
],
"type": "object"
}