mirror of
https://github.com/docker/docs.git
synced 2026-03-28 06:49:00 +07: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))
|
|
}
|