We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7dffd4 commit 08920c5Copy full SHA for 08920c5
.github/workflows/stackhpc-container-image-build.yml
@@ -66,6 +66,14 @@ jobs:
66
sudo ip l set dummy1 up
67
sudo ip l set dummy1 master breth1
68
69
+ # FIXME: Without this workaround we see the following issue after the runner is power cycled:
70
+ # TASK [MichaelRigart.interfaces : RedHat | ensure network service is started and enabled] ***
71
+ # Unable to start service network: Job for network.service failed because the control process exited with error code.
72
+ # See \"systemctl status network.service\" and \"journalctl -xe\" for details.
73
+ - name: Kill dhclient (workaround)
74
+ run: |
75
+ (sudo killall dhclient || true) && sudo systemctl restart network
76
+
77
- name: Install Kayobe
78
run: |
79
mkdir -p venvs &&
0 commit comments