mirror of https://github.com/apache/cloudstack.git
IPv6: Disable password and userdata service for ipv6 for now
Would add support later.
This commit is contained in:
parent
455d65808a
commit
d30d23ee08
|
|
@ -815,6 +815,11 @@ public class VirtualRouterElement extends AdapterBase implements VirtualRouterEl
|
|||
if (vm.getType() != VirtualMachine.Type.User) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (network.getIp6Gateway() != null) {
|
||||
s_logger.info("Skip password and userdata service setup for IPv6 VM");
|
||||
return true;
|
||||
}
|
||||
|
||||
@SuppressWarnings("unchecked")
|
||||
VirtualMachineProfile<UserVm> uservm = (VirtualMachineProfile<UserVm>) vm;
|
||||
|
|
|
|||
Loading…
Reference in New Issue