~wallyworld/golxc/support-cmd-env

1.1.1 by Frank Mueller
golxc: added first test, it works, but using sudo doesn't work good
1
package golxc
2
3
// ContainerHome returns the name of the container directory.
4
func ContainerHome(c *Container) string {
5
	return c.containerHome()
1.2.5 by Frank Mueller
golxc: introduced environment reading with an own file
6
}
7
1.2.12 by Frank Mueller
golxc: changes after review
8
// SetConfPath allows the manipulation of the LXC
1.2.11 by Frank Mueller
golxc: changed configuration handling after review
9
// default configuration file.
1.2.12 by Frank Mueller
golxc: changes after review
10
func SetConfPath(cp string) string {
11
	orig := confPath
12
	confPath = cp
1.2.5 by Frank Mueller
golxc: introduced environment reading with an own file
13
	return orig
14
}