(cmd *cobra.Command)
| 143 | } |
| 144 | |
| 145 | func addCommunityScriptDeployFlags(cmd *cobra.Command) { |
| 146 | cmd.Flags().String("node", "", "Target Proxmox node") |
| 147 | cmd.Flags().Bool("skip-url-check", false, "Skip checking that the raw install script URL exists before SSH") |
| 148 | cmd.Flags().StringArray("set", nil, "Community Scripts var_* override in KEY=VALUE form (repeatable)") |
| 149 | cmd.Flags().Bool("yes", false, "Run without allocating a TTY and fail instead of waiting for interactive prompts") |
| 150 | cmd.Flags().Bool("non-interactive", false, "Alias for --yes") |
| 151 | } |
| 152 | |
| 153 | func runCommunityScriptsSearch(cmd *cobra.Command, args []string) error { |
| 154 | session, err := initCLISession(cmd) |
no test coverage detected