Skip to content

Commit

Permalink
Merge #1952
Browse files Browse the repository at this point in the history
1952: [daemon] disallow `--network ...,mode=auto` on Ubuntu Core 16 r=luis4a0,townsend2010 a=Saviq

`netplan` in the image is too old to handle our config:

```plain
Stderr: Error in network definition //etc/netplan/50-cloud-init.yaml line 12 column 12: unknown key dhcp4-overrides
```



Co-authored-by: Michał Sawicz <[email protected]>
  • Loading branch information
bors[bot] and Saviq committed Feb 5, 2021
1 parent 9552990 commit c541aff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daemon/daemon.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const std::unordered_set<std::string> no_bridging_images = {
"release:12.10", "release:quantal", "release:13.04", "release:raring", "release:13.10", "release:saucy",
"release:14.04", "release:trusty", "release:14.10", "release:utopic", "release:15.04", "release:vivid",
"release:15.10", "release:wily", "release:16.04", "release:xenial", "release:16.10", "release:yakkety",
"release:17.04", "release:zesty", "snapcraft:core"};
"release:17.04", "release:zesty", "release:core", "release:core16", "snapcraft:core"};

mp::Query query_from(const mp::LaunchRequest* request, const std::string& name)
{
Expand Down

0 comments on commit c541aff

Please sign in to comment.