Documentation ¶
Index ¶
- Constants
- Variables
- func NewSpinner(config SpinnerCfg) *yacspin.Spinner
- func OpenCommandName() (commandName string)
- type AdHocPlaybook
- type AliasCommand
- type CheckCommand
- type CommandArgumentValidator
- type DBOpenCommand
- type DeployCommand
- type DotEnvCommand
- type DownCommand
- type DropletCreateCommand
- type DropletDnsCommand
- type ExecCommand
- type GalaxyInstallCommand
- type InfoCommand
- type InitCommand
- type KeyGenerateCommand
- type LogsCommand
- type NamespaceCommand
- type NewCommand
- type OpenCommand
- type PassthroughCommand
- type ProvisionCommand
- type RollbackCommand
- type ShellInitCommand
- type SpinnerCfg
- type SshCommand
- type UpCommand
- type ValetLinkCommand
- type VaultDecryptCommand
- type VaultEditCommand
- type VaultEncryptCommand
- type VaultViewCommand
- type VenvHookCommand
- type VmDeleteCommand
- type VmShellCommand
- type VmStartCommand
- type VmStopCommand
- type VmSudoersCommand
- type WrappedIOWriter
- type XdebugTunnelCloseCommand
- type XdebugTunnelOpenCommand
Constants ¶
View Source
const VagrantInventoryFilePath string = ".vagrant/provisioners/ansible/inventory/vagrant_ansible_inventory"
Variables ¶
View Source
var BashScript string
View Source
var HookbookScript string
View Source
var Requirements = []trellis.Requirement{ { Name: "Python", Command: "python3", Optional: false, Url: "https://www.python.org/", VersionConstraint: ">= 3.8.0", ExtractVersion: func(output string) string { return strings.Replace(output, "Python ", "", 1) }, }, { Name: "Vagrant", Command: "vagrant", Optional: true, Url: "https://www.vagrantup.com/downloads.html", VersionConstraint: ">= 2.1.0", ExtractVersion: func(output string) string { return strings.Replace(output, "Vagrant ", "", 1) }, }, { Name: "VirtualBox", Command: "VBoxManage", Optional: true, Url: "https://www.virtualbox.org/wiki/Downloads", VersionConstraint: ">= 4.3.10", }, }
View Source
var RoleAlreadyInstalledPattern = regexp.MustCompile(`^.*\[WARNING\]\: - (.*) \(.*\) .*`)
View Source
var ZshScript string
Functions ¶
func NewSpinner ¶ added in v1.3.0
func NewSpinner(config SpinnerCfg) *yacspin.Spinner
func OpenCommandName ¶ added in v1.3.0
func OpenCommandName() (commandName string)
Types ¶
type AdHocPlaybook ¶
type AdHocPlaybook struct {
// contains filtered or unexported fields
}
func (*AdHocPlaybook) DumpFiles ¶ added in v1.5.0
func (p *AdHocPlaybook) DumpFiles() func()
type AliasCommand ¶
type AliasCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewAliasCommand ¶
func NewAliasCommand(ui cli.Ui, trellis *trellis.Trellis) *AliasCommand
func (*AliasCommand) AutocompleteArgs ¶ added in v1.11.0
func (c *AliasCommand) AutocompleteArgs() complete.Predictor
func (*AliasCommand) AutocompleteFlags ¶
func (c *AliasCommand) AutocompleteFlags() complete.Flags
func (*AliasCommand) Help ¶
func (c *AliasCommand) Help() string
func (*AliasCommand) Run ¶
func (c *AliasCommand) Run(args []string) int
func (*AliasCommand) Synopsis ¶
func (c *AliasCommand) Synopsis() string
type CheckCommand ¶
func (*CheckCommand) Help ¶
func (c *CheckCommand) Help() string
func (*CheckCommand) Run ¶
func (c *CheckCommand) Run(args []string) int
func (*CheckCommand) Synopsis ¶
func (c *CheckCommand) Synopsis() string
type CommandArgumentValidator ¶
type CommandArgumentValidator struct {
// contains filtered or unexported fields
}
type DBOpenCommand ¶
type DBOpenCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewDBOpenCommand ¶
func NewDBOpenCommand(ui cli.Ui, trellis *trellis.Trellis) *DBOpenCommand
func (*DBOpenCommand) AutocompleteArgs ¶ added in v1.11.0
func (c *DBOpenCommand) AutocompleteArgs() complete.Predictor
func (*DBOpenCommand) AutocompleteFlags ¶ added in v1.11.0
func (c *DBOpenCommand) AutocompleteFlags() complete.Flags
func (*DBOpenCommand) Help ¶
func (c *DBOpenCommand) Help() string
func (*DBOpenCommand) Run ¶
func (c *DBOpenCommand) Run(args []string) int
func (*DBOpenCommand) Synopsis ¶
func (c *DBOpenCommand) Synopsis() string
type DeployCommand ¶
type DeployCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewDeployCommand ¶
func NewDeployCommand(ui cli.Ui, trellis *trellis.Trellis) *DeployCommand
func (*DeployCommand) AutocompleteArgs ¶
func (c *DeployCommand) AutocompleteArgs() complete.Predictor
func (*DeployCommand) AutocompleteFlags ¶
func (c *DeployCommand) AutocompleteFlags() complete.Flags
func (*DeployCommand) Help ¶
func (c *DeployCommand) Help() string
func (*DeployCommand) Run ¶
func (c *DeployCommand) Run(args []string) int
func (*DeployCommand) Synopsis ¶
func (c *DeployCommand) Synopsis() string
type DotEnvCommand ¶
type DotEnvCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewDotEnvCommand ¶
func NewDotEnvCommand(ui cli.Ui, trellis *trellis.Trellis) *DotEnvCommand
func (*DotEnvCommand) AutocompleteArgs ¶ added in v1.8.0
func (c *DotEnvCommand) AutocompleteArgs() complete.Predictor
func (*DotEnvCommand) AutocompleteFlags ¶ added in v1.8.0
func (c *DotEnvCommand) AutocompleteFlags() complete.Flags
func (*DotEnvCommand) Help ¶
func (c *DotEnvCommand) Help() string
func (*DotEnvCommand) Run ¶
func (c *DotEnvCommand) Run(args []string) int
func (*DotEnvCommand) Synopsis ¶
func (c *DotEnvCommand) Synopsis() string
type DownCommand ¶
func (*DownCommand) Help ¶
func (c *DownCommand) Help() string
func (*DownCommand) Run ¶
func (c *DownCommand) Run(args []string) int
func (*DownCommand) Synopsis ¶
func (c *DownCommand) Synopsis() string
type DropletCreateCommand ¶
type DropletCreateCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewDropletCreateCommand ¶
func NewDropletCreateCommand(ui cli.Ui, trellis *trellis.Trellis) *DropletCreateCommand
func (*DropletCreateCommand) AutocompleteArgs ¶
func (c *DropletCreateCommand) AutocompleteArgs() complete.Predictor
func (*DropletCreateCommand) AutocompleteFlags ¶
func (c *DropletCreateCommand) AutocompleteFlags() complete.Flags
func (*DropletCreateCommand) Help ¶
func (c *DropletCreateCommand) Help() string
func (*DropletCreateCommand) Run ¶
func (c *DropletCreateCommand) Run(args []string) int
func (*DropletCreateCommand) Synopsis ¶
func (c *DropletCreateCommand) Synopsis() string
type DropletDnsCommand ¶ added in v1.9.0
type DropletDnsCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewDropletDnsCommand ¶ added in v1.9.0
func NewDropletDnsCommand(ui cli.Ui, trellis *trellis.Trellis) *DropletDnsCommand
func (*DropletDnsCommand) AutocompleteArgs ¶ added in v1.9.0
func (c *DropletDnsCommand) AutocompleteArgs() complete.Predictor
func (*DropletDnsCommand) AutocompleteFlags ¶ added in v1.9.0
func (c *DropletDnsCommand) AutocompleteFlags() complete.Flags
func (*DropletDnsCommand) Help ¶ added in v1.9.0
func (c *DropletDnsCommand) Help() string
func (*DropletDnsCommand) Run ¶ added in v1.9.0
func (c *DropletDnsCommand) Run(args []string) int
func (*DropletDnsCommand) Synopsis ¶ added in v1.9.0
func (c *DropletDnsCommand) Synopsis() string
type ExecCommand ¶
func (*ExecCommand) Help ¶
func (c *ExecCommand) Help() string
func (*ExecCommand) Run ¶
func (c *ExecCommand) Run(args []string) int
func (*ExecCommand) Synopsis ¶
func (c *ExecCommand) Synopsis() string
type GalaxyInstallCommand ¶
func (*GalaxyInstallCommand) Help ¶
func (c *GalaxyInstallCommand) Help() string
func (*GalaxyInstallCommand) Run ¶
func (c *GalaxyInstallCommand) Run(args []string) int
func (*GalaxyInstallCommand) Synopsis ¶
func (c *GalaxyInstallCommand) Synopsis() string
type InfoCommand ¶
func (*InfoCommand) Help ¶
func (c *InfoCommand) Help() string
func (*InfoCommand) Run ¶
func (c *InfoCommand) Run(args []string) int
func (*InfoCommand) Synopsis ¶
func (c *InfoCommand) Synopsis() string
type InitCommand ¶
type InitCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewInitCommand ¶ added in v1.3.0
func NewInitCommand(ui cli.Ui, trellis *trellis.Trellis) *InitCommand
func (*InitCommand) Help ¶
func (c *InitCommand) Help() string
func (*InitCommand) Run ¶
func (c *InitCommand) Run(args []string) int
func (*InitCommand) Synopsis ¶
func (c *InitCommand) Synopsis() string
type KeyGenerateCommand ¶ added in v1.3.0
type KeyGenerateCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewKeyGenerateCommand ¶ added in v1.3.0
func NewKeyGenerateCommand(ui cli.Ui, trellis *trellis.Trellis) *KeyGenerateCommand
func (*KeyGenerateCommand) AutocompleteArgs ¶ added in v1.3.0
func (c *KeyGenerateCommand) AutocompleteArgs() complete.Predictor
func (*KeyGenerateCommand) AutocompleteFlags ¶ added in v1.3.0
func (c *KeyGenerateCommand) AutocompleteFlags() complete.Flags
func (*KeyGenerateCommand) Help ¶ added in v1.3.0
func (c *KeyGenerateCommand) Help() string
func (*KeyGenerateCommand) Run ¶ added in v1.3.0
func (c *KeyGenerateCommand) Run(args []string) int
func (*KeyGenerateCommand) Synopsis ¶ added in v1.3.0
func (c *KeyGenerateCommand) Synopsis() string
type LogsCommand ¶ added in v1.9.0
type LogsCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewLogsCommand ¶ added in v1.9.0
func NewLogsCommand(ui cli.Ui, trellis *trellis.Trellis) *LogsCommand
func (*LogsCommand) AutocompleteArgs ¶ added in v1.9.0
func (c *LogsCommand) AutocompleteArgs() complete.Predictor
func (*LogsCommand) AutocompleteFlags ¶ added in v1.9.0
func (c *LogsCommand) AutocompleteFlags() complete.Flags
func (*LogsCommand) Help ¶ added in v1.9.0
func (c *LogsCommand) Help() string
func (*LogsCommand) Run ¶ added in v1.9.0
func (c *LogsCommand) Run(args []string) int
func (*LogsCommand) Synopsis ¶ added in v1.9.0
func (c *LogsCommand) Synopsis() string
type NamespaceCommand ¶
func (*NamespaceCommand) Help ¶
func (c *NamespaceCommand) Help() string
func (*NamespaceCommand) Run ¶
func (c *NamespaceCommand) Run(args []string) int
func (*NamespaceCommand) Synopsis ¶
func (c *NamespaceCommand) Synopsis() string
type NewCommand ¶
func NewNewCommand ¶
func (*NewCommand) Help ¶
func (c *NewCommand) Help() string
func (*NewCommand) Run ¶
func (c *NewCommand) Run(args []string) int
func (*NewCommand) Synopsis ¶
func (c *NewCommand) Synopsis() string
func (*NewCommand) YamlHeader ¶
func (c *NewCommand) YamlHeader(doc string) string
type OpenCommand ¶ added in v1.3.0
func (*OpenCommand) AutocompleteArgs ¶ added in v1.3.0
func (c *OpenCommand) AutocompleteArgs() complete.Predictor
func (*OpenCommand) AutocompleteFlags ¶ added in v1.3.0
func (c *OpenCommand) AutocompleteFlags() complete.Flags
func (*OpenCommand) Help ¶ added in v1.3.0
func (c *OpenCommand) Help() string
func (*OpenCommand) Run ¶ added in v1.3.0
func (c *OpenCommand) Run(args []string) int
func (*OpenCommand) Synopsis ¶ added in v1.3.0
func (c *OpenCommand) Synopsis() string
type PassthroughCommand ¶
func (*PassthroughCommand) Help ¶
func (c *PassthroughCommand) Help() string
func (*PassthroughCommand) Run ¶
func (c *PassthroughCommand) Run(args []string) int
func (*PassthroughCommand) Synopsis ¶
func (c *PassthroughCommand) Synopsis() string
type ProvisionCommand ¶
type ProvisionCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewProvisionCommand ¶
func NewProvisionCommand(ui cli.Ui, trellis *trellis.Trellis) *ProvisionCommand
func (*ProvisionCommand) AutocompleteArgs ¶
func (c *ProvisionCommand) AutocompleteArgs() complete.Predictor
func (*ProvisionCommand) AutocompleteFlags ¶
func (c *ProvisionCommand) AutocompleteFlags() complete.Flags
func (*ProvisionCommand) Help ¶
func (c *ProvisionCommand) Help() string
func (*ProvisionCommand) Run ¶
func (c *ProvisionCommand) Run(args []string) int
func (*ProvisionCommand) Synopsis ¶
func (c *ProvisionCommand) Synopsis() string
type RollbackCommand ¶
type RollbackCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewRollbackCommand ¶
func NewRollbackCommand(ui cli.Ui, trellis *trellis.Trellis) *RollbackCommand
func (*RollbackCommand) AutocompleteArgs ¶
func (c *RollbackCommand) AutocompleteArgs() complete.Predictor
func (*RollbackCommand) AutocompleteFlags ¶
func (c *RollbackCommand) AutocompleteFlags() complete.Flags
func (*RollbackCommand) Help ¶
func (c *RollbackCommand) Help() string
func (*RollbackCommand) Run ¶
func (c *RollbackCommand) Run(args []string) int
func (*RollbackCommand) Synopsis ¶
func (c *RollbackCommand) Synopsis() string
type ShellInitCommand ¶
func (*ShellInitCommand) Help ¶
func (c *ShellInitCommand) Help() string
func (*ShellInitCommand) Run ¶
func (c *ShellInitCommand) Run(args []string) int
func (*ShellInitCommand) Synopsis ¶
func (c *ShellInitCommand) Synopsis() string
type SpinnerCfg ¶ added in v1.3.0
type SshCommand ¶
type SshCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewSshCommand ¶ added in v1.9.0
func NewSshCommand(ui cli.Ui, trellis *trellis.Trellis) *SshCommand
func (*SshCommand) AutocompleteArgs ¶
func (c *SshCommand) AutocompleteArgs() complete.Predictor
func (*SshCommand) AutocompleteFlags ¶
func (c *SshCommand) AutocompleteFlags() complete.Flags
func (*SshCommand) Help ¶
func (c *SshCommand) Help() string
func (*SshCommand) Run ¶
func (c *SshCommand) Run(args []string) int
func (*SshCommand) Synopsis ¶
func (c *SshCommand) Synopsis() string
type UpCommand ¶
type UpCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func (*UpCommand) AutocompleteArgs ¶
func (*UpCommand) AutocompleteFlags ¶
type ValetLinkCommand ¶
func (*ValetLinkCommand) Help ¶
func (c *ValetLinkCommand) Help() string
func (*ValetLinkCommand) Run ¶
func (c *ValetLinkCommand) Run(args []string) int
func (*ValetLinkCommand) Synopsis ¶
func (c *ValetLinkCommand) Synopsis() string
type VaultDecryptCommand ¶
type VaultDecryptCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewVaultDecryptCommand ¶
func NewVaultDecryptCommand(ui cli.Ui, trellis *trellis.Trellis) *VaultDecryptCommand
func (*VaultDecryptCommand) AutocompleteArgs ¶
func (c *VaultDecryptCommand) AutocompleteArgs() complete.Predictor
func (*VaultDecryptCommand) AutocompleteFlags ¶
func (c *VaultDecryptCommand) AutocompleteFlags() complete.Flags
func (*VaultDecryptCommand) Help ¶
func (c *VaultDecryptCommand) Help() string
func (*VaultDecryptCommand) Run ¶
func (c *VaultDecryptCommand) Run(args []string) int
func (*VaultDecryptCommand) Synopsis ¶
func (c *VaultDecryptCommand) Synopsis() string
type VaultEditCommand ¶
type VaultEditCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewVaultEditCommand ¶ added in v1.12.0
func NewVaultEditCommand(ui cli.Ui, trellis *trellis.Trellis) *VaultEditCommand
func (*VaultEditCommand) AutocompleteArgs ¶ added in v1.12.0
func (c *VaultEditCommand) AutocompleteArgs() complete.Predictor
func (*VaultEditCommand) AutocompleteFlags ¶ added in v1.12.0
func (c *VaultEditCommand) AutocompleteFlags() complete.Flags
func (*VaultEditCommand) Help ¶
func (c *VaultEditCommand) Help() string
func (*VaultEditCommand) Run ¶
func (c *VaultEditCommand) Run(args []string) int
func (*VaultEditCommand) Synopsis ¶
func (c *VaultEditCommand) Synopsis() string
type VaultEncryptCommand ¶
type VaultEncryptCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewVaultEncryptCommand ¶
func NewVaultEncryptCommand(ui cli.Ui, trellis *trellis.Trellis) *VaultEncryptCommand
func (*VaultEncryptCommand) AutocompleteArgs ¶
func (c *VaultEncryptCommand) AutocompleteArgs() complete.Predictor
func (*VaultEncryptCommand) AutocompleteFlags ¶
func (c *VaultEncryptCommand) AutocompleteFlags() complete.Flags
func (*VaultEncryptCommand) Help ¶
func (c *VaultEncryptCommand) Help() string
func (*VaultEncryptCommand) Run ¶
func (c *VaultEncryptCommand) Run(args []string) int
func (*VaultEncryptCommand) Synopsis ¶
func (c *VaultEncryptCommand) Synopsis() string
type VaultViewCommand ¶
type VaultViewCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewVaultViewCommand ¶
func NewVaultViewCommand(ui cli.Ui, trellis *trellis.Trellis) *VaultViewCommand
func (*VaultViewCommand) AutocompleteArgs ¶
func (c *VaultViewCommand) AutocompleteArgs() complete.Predictor
func (*VaultViewCommand) AutocompleteFlags ¶
func (c *VaultViewCommand) AutocompleteFlags() complete.Flags
func (*VaultViewCommand) Help ¶
func (c *VaultViewCommand) Help() string
func (*VaultViewCommand) Run ¶
func (c *VaultViewCommand) Run(args []string) int
func (*VaultViewCommand) Synopsis ¶
func (c *VaultViewCommand) Synopsis() string
type VenvHookCommand ¶
func (*VenvHookCommand) Help ¶
func (c *VenvHookCommand) Help() string
func (*VenvHookCommand) Run ¶
func (c *VenvHookCommand) Run(args []string) int
func (*VenvHookCommand) Synopsis ¶
func (c *VenvHookCommand) Synopsis() string
type VmDeleteCommand ¶ added in v1.10.0
type VmDeleteCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewVmDeleteCommand ¶ added in v1.10.0
func NewVmDeleteCommand(ui cli.Ui, trellis *trellis.Trellis) *VmDeleteCommand
func (*VmDeleteCommand) AutocompleteFlags ¶ added in v1.10.0
func (c *VmDeleteCommand) AutocompleteFlags() complete.Flags
func (*VmDeleteCommand) Help ¶ added in v1.10.0
func (c *VmDeleteCommand) Help() string
func (*VmDeleteCommand) Run ¶ added in v1.10.0
func (c *VmDeleteCommand) Run(args []string) int
func (*VmDeleteCommand) Synopsis ¶ added in v1.10.0
func (c *VmDeleteCommand) Synopsis() string
type VmShellCommand ¶ added in v1.10.0
type VmShellCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewVmShellCommand ¶ added in v1.11.0
func NewVmShellCommand(ui cli.Ui, trellis *trellis.Trellis) *VmShellCommand
func (*VmShellCommand) Help ¶ added in v1.10.0
func (c *VmShellCommand) Help() string
func (*VmShellCommand) Run ¶ added in v1.10.0
func (c *VmShellCommand) Run(args []string) int
func (*VmShellCommand) Synopsis ¶ added in v1.10.0
func (c *VmShellCommand) Synopsis() string
type VmStartCommand ¶ added in v1.10.0
type VmStartCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewVmStartCommand ¶ added in v1.10.0
func NewVmStartCommand(ui cli.Ui, trellis *trellis.Trellis) *VmStartCommand
func (*VmStartCommand) Help ¶ added in v1.10.0
func (c *VmStartCommand) Help() string
func (*VmStartCommand) Run ¶ added in v1.10.0
func (c *VmStartCommand) Run(args []string) int
func (*VmStartCommand) Synopsis ¶ added in v1.10.0
func (c *VmStartCommand) Synopsis() string
type VmStopCommand ¶ added in v1.10.0
type VmStopCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewVmStopCommand ¶ added in v1.10.0
func NewVmStopCommand(ui cli.Ui, trellis *trellis.Trellis) *VmStopCommand
func (*VmStopCommand) Help ¶ added in v1.10.0
func (c *VmStopCommand) Help() string
func (*VmStopCommand) Run ¶ added in v1.10.0
func (c *VmStopCommand) Run(args []string) int
func (*VmStopCommand) Synopsis ¶ added in v1.10.0
func (c *VmStopCommand) Synopsis() string
type VmSudoersCommand ¶ added in v1.10.0
func (*VmSudoersCommand) Help ¶ added in v1.10.0
func (c *VmSudoersCommand) Help() string
func (*VmSudoersCommand) Run ¶ added in v1.10.0
func (c *VmSudoersCommand) Run(args []string) int
func (*VmSudoersCommand) Synopsis ¶ added in v1.10.0
func (c *VmSudoersCommand) Synopsis() string
type WrappedIOWriter ¶ added in v1.10.0
type WrappedIOWriter struct {
// contains filtered or unexported fields
}
type XdebugTunnelCloseCommand ¶ added in v1.4.0
type XdebugTunnelCloseCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewXdebugTunnelCloseCommand ¶ added in v1.4.0
func NewXdebugTunnelCloseCommand(ui cli.Ui, trellis *trellis.Trellis) *XdebugTunnelCloseCommand
func (*XdebugTunnelCloseCommand) AutocompleteFlags ¶ added in v1.4.0
func (c *XdebugTunnelCloseCommand) AutocompleteFlags() complete.Flags
func (*XdebugTunnelCloseCommand) Help ¶ added in v1.4.0
func (c *XdebugTunnelCloseCommand) Help() string
func (*XdebugTunnelCloseCommand) Run ¶ added in v1.4.0
func (c *XdebugTunnelCloseCommand) Run(args []string) int
func (*XdebugTunnelCloseCommand) Synopsis ¶ added in v1.4.0
func (c *XdebugTunnelCloseCommand) Synopsis() string
type XdebugTunnelOpenCommand ¶ added in v1.4.0
type XdebugTunnelOpenCommand struct { UI cli.Ui Trellis *trellis.Trellis // contains filtered or unexported fields }
func NewXdebugTunnelOpenCommand ¶ added in v1.4.0
func NewXdebugTunnelOpenCommand(ui cli.Ui, trellis *trellis.Trellis) *XdebugTunnelOpenCommand
func (*XdebugTunnelOpenCommand) AutocompleteFlags ¶ added in v1.4.0
func (c *XdebugTunnelOpenCommand) AutocompleteFlags() complete.Flags
func (*XdebugTunnelOpenCommand) Help ¶ added in v1.4.0
func (c *XdebugTunnelOpenCommand) Help() string
func (*XdebugTunnelOpenCommand) Run ¶ added in v1.4.0
func (c *XdebugTunnelOpenCommand) Run(args []string) int
func (*XdebugTunnelOpenCommand) Synopsis ¶ added in v1.4.0
func (c *XdebugTunnelOpenCommand) Synopsis() string
Source Files ¶
- ad_hoc_playbook.go
- alias.go
- check.go
- command_argument_validator.go
- db_open.go
- deploy.go
- dot_env.go
- down.go
- droplet_create.go
- droplet_dns.go
- exec.go
- galaxy_install.go
- info.go
- init.go
- key_generate.go
- logs.go
- namespace.go
- new.go
- open.go
- passthrough.go
- provision.go
- rollback.go
- shell_init.go
- spinner.go
- ssh.go
- up.go
- valet_link.go
- vault_decrypt.go
- vault_edit.go
- vault_encrypt.go
- vault_view.go
- venv_hook.go
- vm.go
- vm_delete.go
- vm_shell.go
- vm_start.go
- vm_stop.go
- vm_sudoers.go
- xdebug_tunnel_close.go
- xdebug_tunnel_open.go
Click to show internal directories.
Click to hide internal directories.