lxc_init_linux.go 143 B

1234567891011
  1. // +build amd64
  2. package lxc
  3. import (
  4. "syscall"
  5. )
  6. func setHostname(hostname string) error {
  7. return syscall.Sethostname([]byte(hostname))
  8. }