Unverified Commit 5622a88b authored by Erik Wilson's avatar Erik Wilson Committed by GitHub

Merge pull request #917 from erikwilson/fix-strongswan-root-etc

Fallback to /etc/strongswan for config
parents 882014d1 12307a4a
......@@ -147,10 +147,10 @@ func createFlannelConf(nodeConfig *config.Node) error {
}
func setupStrongSwan(nodeConfig *config.Node) error {
// if we don't know the location of extracted strongswan data then return
// if data dir env is not set point to root
dataDir := os.Getenv("K3S_DATA_DIR")
if dataDir == "" {
return nil
dataDir = "/"
}
dataDir = path.Join(dataDir, "etc", "strongswan")
......@@ -159,6 +159,13 @@ func setupStrongSwan(nodeConfig *config.Node) error {
if err == nil && info.Mode()&os.ModeSymlink == 0 {
return nil
}
if err == nil {
target, err := os.Readlink(nodeConfig.AgentConfig.StrongSwanDir)
// current link is the same, return
if err == nil && target == dataDir {
return nil
}
}
// clean up strongswan old link
os.Remove(nodeConfig.AgentConfig.StrongSwanDir)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment