mirror of
https://github.com/docker/cli.git
synced 2026-01-15 07:40:57 +03: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))
|
|
}
|