mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
f7684ea7f6
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)
9 lines
126 B
Go
9 lines
126 B
Go
package lxc
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func setHostname(hostname string) error {
|
|
return syscall.Sethostname([]byte(hostname))
|
|
}
|