You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Once we switched Alpine images from installation to nocloud source Alpine images, the chronyd service is included.
In re-contextualization (onevm updateconf) we call reload_netowrk which calls stop_network + start_network, after which chronyd service remains stopped. Unlike we would call servce networking restart.
localhost:~# service networking stop && service networking start
* Stopping chronyd ... [ ok ]
* Stopping networking ...
* lo ... [ ok ]
* eth0 ... [ ok ]
* Starting networking ...
* lo ... [ ok ]
* eth0 ...
vs
localhost:~# service networking restart
* Stopping chronyd ... [ ok ]
* Stopping networking ...
* lo ... [ ok ]
* eth0 ... [ ok ]
* Starting networking ...
* lo ... [ ok ]
* eth0 ... [ ok ]
localhost:~# * Starting chronyd ...
To fix that we can execute service networking restart in reload_network, but we should find different fix (or test if issue is still present) for for this commit
Once we switched Alpine images from installation to nocloud source Alpine images, the chronyd service is included.
In re-contextualization (
onevm updateconf
) we callreload_netowrk
which callsstop_network
+start_network
, after whichchronyd
service remains stopped. Unlike we would callservce networking restart
.vs
To fix that we can execute
service networking restart
inreload_network
, but we should find different fix (or test if issue is still present) for for this commitThe text was updated successfully, but these errors were encountered: