1
0
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:
2026-05-03 03:32:03 +06:00
parent 1143acd37a
commit f328113a2a
2 changed files with 3 additions and 3 deletions

View File

@ -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,
)