create_startup_script
Generate custom startup scripts for Vultr cloud instances to automate server configuration during boot or PXE deployment processes.
Instructions
Create a new startup script.
Args: name: Name for the startup script script: The script content script_type: Type of script ('boot' or 'pxe')
Returns: Created startup script details
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| name | Yes | ||
| script | Yes | ||
| script_type | No | boot | 
Input Schema (JSON Schema)
{
  "properties": {
    "name": {
      "title": "Name",
      "type": "string"
    },
    "script": {
      "title": "Script",
      "type": "string"
    },
    "script_type": {
      "default": "boot",
      "title": "Script Type",
      "type": "string"
    }
  },
  "required": [
    "name",
    "script"
  ],
  "type": "object"
}