mirror of
https://github.com/clearlinux/docker.git
synced 2026-05-18 04:34:08 +00:00
10 lines
130 B
Go
10 lines
130 B
Go
package sysinit
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func setHostname(hostname string) error {
|
|
return syscall.Sethostname([]byte(hostname))
|
|
}
|