clitools/pkg/system/hostname_linux.go
raw ยท 190 bytes
//go:build linux
package system
import "golang.org/x/sys/unix"
func SetHostname(hostname string) error {
if hostname == "" {
return nil
}
return unix.Sethostname([]byte(hostname))
}
k8s image for Mono Gateway Dev Kit
raw ยท 190 bytes
//go:build linux
package system
import "golang.org/x/sys/unix"
func SetHostname(hostname string) error {
if hostname == "" {
return nil
}
return unix.Sethostname([]byte(hostname))
}