You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by GitBox <gi...@apache.org> on 2018/05/10 16:41:55 UTC

[GitHub] ustcweizhou commented on issue #2635: router: Fixes #2544 run passwd server on dhcpserver IP on rVR

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:
users@infra.apache.org


With regards,
Apache Git Services