Docker-DCO-1.1-Signed-off-by: Michael Crosby <michael@crosbymichael.com> (github: crosbymichael) Upstream-commit: af385151ceedde097eda8a5195b431e8076cf76b Component: engine
12 lines
143 B
Go
12 lines
143 B
Go
// +build amd64
|
|
|
|
package lxc
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func setHostname(hostname string) error {
|
|
return syscall.Sethostname([]byte(hostname))
|
|
}
|