1
0
mirror of https://github.com/rancher/os.git synced 2025-04-27 19:15:23 +00:00
os/pkg/init/env/env.go
2018-09-19 17:18:49 +08:00

30 lines
687 B
Go

package env
import (
"os"
"github.com/rancher/os/config"
"github.com/rancher/os/pkg/init/fsmount"
"github.com/rancher/os/pkg/log"
"github.com/rancher/os/pkg/util/network"
)
func Init(c *config.CloudConfig) (*config.CloudConfig, error) {
os.Setenv("PATH", "/sbin:/usr/sbin:/usr/bin")
if fsmount.IsInitrd() {
log.Debug("Booting off an in-memory filesystem")
// Magic setting to tell Docker to do switch_root and not pivot_root
os.Setenv("DOCKER_RAMDISK", "true")
} else {
log.Debug("Booting off a persistent filesystem")
}
return c, nil
}
func Proxy(cfg *config.CloudConfig) (*config.CloudConfig, error) {
network.SetProxyEnvironmentVariables()
return cfg, nil
}