Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
lxd provider: use right bind address for LXD #5004
Merged
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
Jump to file or symbol
Failed to load files and symbols.
| @@ -0,0 +1,11 @@ | ||
| +// Copyright 2016 Canonical Ltd. | ||
| +// Licensed under the AGPLv3, see LICENCE file for details. | ||
| + | ||
| +// +build !go1.3 | ||
| + | ||
| +package lxdclient | ||
| + | ||
| +func GetDefaultBridgeName() (string, error) { | ||
| + /* lxd not supported in go1.2 */ | ||
| + return "lxcbr0", nil | ||
| +} |