-
Notifications
You must be signed in to change notification settings - Fork 600
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make guest username, uid, home directory configurable
Also disallows the "admin" username by default (because it is a builtin user in Ubuntu), but can be overridden by setting it explicitly in lima.yaml. Signed-off-by: Jan Dubois <[email protected]>
- Loading branch information
Showing
27 changed files
with
346 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,6 @@ import ( | |
"strings" | ||
|
||
"github.com/coreos/go-semver/semver" | ||
"github.com/lima-vm/lima/pkg/osutil" | ||
"github.com/lima-vm/lima/pkg/sshutil" | ||
"github.com/lima-vm/lima/pkg/store" | ||
"github.com/sirupsen/logrus" | ||
|
@@ -48,11 +47,7 @@ func copyAction(cmd *cobra.Command, args []string) error { | |
if err != nil { | ||
return err | ||
} | ||
u, err := osutil.LimaUser(false) | ||
if err != nil { | ||
return err | ||
} | ||
instDirs := make(map[string]string) | ||
instances := make(map[string]*store.Instance) | ||
scpFlags := []string{} | ||
scpArgs := []string{} | ||
debug, err := cmd.Flags().GetBool("debug") | ||
|
@@ -85,28 +80,28 @@ func copyAction(cmd *cobra.Command, args []string) error { | |
} | ||
if legacySSH { | ||
scpFlags = append(scpFlags, "-P", fmt.Sprintf("%d", inst.SSHLocalPort)) | ||
scpArgs = append(scpArgs, fmt.Sprintf("%[email protected]:%s", u.Username, path[1])) | ||
scpArgs = append(scpArgs, fmt.Sprintf("%[email protected]:%s", *inst.Config.User.Name, path[1])) | ||
} else { | ||
scpArgs = append(scpArgs, fmt.Sprintf("scp://%[email protected]:%d/%s", u.Username, inst.SSHLocalPort, path[1])) | ||
scpArgs = append(scpArgs, fmt.Sprintf("scp://%[email protected]:%d/%s", *inst.Config.User.Name, inst.SSHLocalPort, path[1])) | ||
} | ||
instDirs[instName] = inst.Dir | ||
instances[instName] = inst | ||
default: | ||
return fmt.Errorf("path %q contains multiple colons", arg) | ||
} | ||
} | ||
if legacySSH && len(instDirs) > 1 { | ||
if legacySSH && len(instances) > 1 { | ||
return fmt.Errorf("more than one (instance) host is involved in this command, this is only supported for openSSH v8.0 or higher") | ||
} | ||
scpFlags = append(scpFlags, "-3", "--") | ||
scpArgs = append(scpFlags, scpArgs...) | ||
|
||
var sshOpts []string | ||
if len(instDirs) == 1 { | ||
if len(instances) == 1 { | ||
// Only one (instance) host is involved; we can use the instance-specific | ||
// arguments such as ControlPath. This is preferred as we can multiplex | ||
// sessions without re-authenticating (MaxSessions permitting). | ||
for _, instDir := range instDirs { | ||
sshOpts, err = sshutil.SSHOpts(instDir, false, false, false, false) | ||
for _, inst := range instances { | ||
sshOpts, err = sshutil.SSHOpts(inst.Dir, *inst.Config.User.Name, false, false, false, false) | ||
if err != nil { | ||
return err | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,11 +12,11 @@ var defaultRemoveDefaults = false | |
|
||
func TestConfig(t *testing.T) { | ||
args := &TemplateArgs{ | ||
Name: "default", | ||
User: "foo", | ||
UID: 501, | ||
GECOS: "Foo", | ||
Home: "/home/foo.linux", | ||
Name: "default", | ||
User: "foo", | ||
UID: 501, | ||
Comment: "Foo", | ||
Home: "/home/foo.linux", | ||
SSHPubKeys: []string{ | ||
"ssh-rsa dummy [email protected]", | ||
}, | ||
|
@@ -30,11 +30,11 @@ func TestConfig(t *testing.T) { | |
|
||
func TestConfigCACerts(t *testing.T) { | ||
args := &TemplateArgs{ | ||
Name: "default", | ||
User: "foo", | ||
UID: 501, | ||
GECOS: "Foo", | ||
Home: "/home/foo.linux", | ||
Name: "default", | ||
User: "foo", | ||
UID: 501, | ||
Comment: "Foo", | ||
Home: "/home/foo.linux", | ||
SSHPubKeys: []string{ | ||
"ssh-rsa dummy [email protected]", | ||
}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.