~wallyworld/golxc/support-cmd-env

1
2
3
4
5
6
7
8
9
10
11
12
13
14
package golxc

// ContainerHome returns the name of the container directory.
func ContainerHome(c *Container) string {
	return c.containerHome()
}

// SetConfPath allows the manipulation of the LXC
// default configuration file.
func SetConfPath(cp string) string {
	orig := confPath
	confPath = cp
	return orig
}