when sharing a /var/lib/docker dir with more than one distribution, an existing lxc-start-unconfined softlink may point to a non-existant path, following that link (as Stat does) will cause the daemon to fail to start
This commit is contained in:
parent
a6928e70ac
commit
0a3eedd4c9
1 changed files with 1 additions and 1 deletions
|
@ -868,7 +868,7 @@ func linkLxcStart(root string) error {
|
|||
}
|
||||
targetPath := path.Join(root, "lxc-start-unconfined")
|
||||
|
||||
if _, err := os.Stat(targetPath); err != nil && !os.IsNotExist(err) {
|
||||
if _, err := os.Lstat(targetPath); err != nil && !os.IsNotExist(err) {
|
||||
return err
|
||||
} else if err == nil {
|
||||
if err := os.Remove(targetPath); err != nil {
|
||||
|
|
Loading…
Add table
Reference in a new issue