mirror of
https://github.com/docker/cli.git
synced 2026-01-15 07:40:57 +03:00
Docker-DCO-1.1-Signed-off-by: Guillaume J. Charmes <guillaume.charmes@docker.com> (github: creack) Docker-DCO-1.1-Signed-off-by: Guillaume J. Charmes <guillaume.charmes@docker.com> (github: crosbymichael) Upstream-commit: f7684ea7f61c0c69033c27605e9ad9a0a76e74cd Component: engine
10 lines
126 B
Go
10 lines
126 B
Go
package lxc
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func setHostname(hostname string) error {
|
|
return syscall.Sethostname([]byte(hostname))
|
|
}
|