forked from wrenn/wrenn
rename guest hostname from "sandbox" to "capsule"
Terminal prompt inside VMs now shows root@capsule instead of root@sandbox, aligning with user-facing "capsule" terminology.
This commit is contained in:
@ -90,7 +90,7 @@ func (c *VMConfig) applyDefaults() {
|
||||
// kernelArgs builds the kernel command line for the VM.
|
||||
func (c *VMConfig) kernelArgs() string {
|
||||
// ip= format: <client-ip>::<gw-ip>:<netmask>:<hostname>:<iface>:<autoconf>
|
||||
ipArg := fmt.Sprintf("ip=%s::%s:%s:sandbox:eth0:off",
|
||||
ipArg := fmt.Sprintf("ip=%s::%s:%s:capsule:eth0:off",
|
||||
c.GuestIP, c.GatewayIP, c.NetMask,
|
||||
)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user