ustcweizhou commented on issue #2635: router: Fixes #2544 run passwd server on dhcpserver IP on rVR URL: https://github.com/apache/cloudstack/pull/2635#issuecomment-388111049 @rhtyd FYI, here is our commit for similar issue ``` if self.config.is_vpc(): ads = [o for o in self.address.get_ips() if o.needs_vrrp()] for o in ads: CsPasswdSvc(o.get_gateway()).restart() CsPasswdSvc(o.get_ip()).restart() else: interfaces = [interface for interface in self.address.get_ips() if interface.is_guest()] for interface in interfaces: CsPasswdSvc(interface.get_ip()).restart() CsPasswdSvc(self.cl.get_guest_gw()).restart() ``` the "stop" part has similar change.
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
