summaryrefslogtreecommitdiff
path: root/runtime/execdriver/lxc/lxc_init_linux.go
blob: 7288f5877bde5fe783555829c144f8d67cad892d (plain)
1
2
3
4
5
6
7
8
9
10
11
// +build amd64

package lxc

import (
	"syscall"
)

func setHostname(hostname string) error {
	return syscall.Sethostname([]byte(hostname))
}