Use FTP instead of SMB
This commit is contained in:
parent
2f1d4ae60d
commit
1c211a55ac
6 changed files with 90 additions and 48 deletions
|
|
@ -23,6 +23,7 @@ func Execute() {
|
|||
}
|
||||
|
||||
var vmDebugFlag bool
|
||||
var unrestrictedNetworkingFlag bool
|
||||
|
||||
func init() {
|
||||
slog.SetDefault(slog.New(slog.NewTextHandler(os.Stderr, nil)))
|
||||
|
|
@ -32,4 +33,5 @@ func init() {
|
|||
rootCmd.AddCommand(shellCmd)
|
||||
|
||||
rootCmd.PersistentFlags().BoolVar(&vmDebugFlag, "vmdebug", false, "Enable VM debug mode. This will open an accessible VM monitor. You can log in with root user and no password.")
|
||||
rootCmd.PersistentFlags().BoolVar(&unrestrictedNetworkingFlag, "unsafe-unrestricted-networking", false, "(UNSAFE) Enable unrestricted networking. This will allow the VM to connect to the internet.")
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue