moby/sysinit/sysinit_linux.go
2013-12-18 10:16:48 -08:00

9 lines
130 B
Go

package sysinit
import (
"syscall"
)
func setHostname(hostname string) error {
return syscall.Sethostname([]byte(hostname))
}