Skip to content

Commit ea60fa0

Browse files
committed
Don't try to ensure network service is running
Some adoption jobs have issues when ensuring that network.service has been started. We were not doing that earlier[1], so let's change that. [1] https://github.com/openstack-k8s-operators/edpm-ansible/blob/18.0-fr2/roles/edpm_network_config/tasks/network_config.yml#L152C13-L159 Signed-off-by: rabi <[email protected]>
1 parent 357e521 commit ea60fa0

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

roles/edpm_network_config/tasks/package_management.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,7 @@
6060
retries: "{{ edpm_network_config_download_retries }}"
6161
delay: "{{ edpm_network_config_download_delay }}"
6262

63-
- name: Ensure network service is enabled and started
63+
- name: Ensure network service is enabled
6464
ansible.builtin.systemd:
65-
name: "{{ edpm_bootstrap_network_service | default('network') }}"
65+
name: network
6666
enabled: true
67-
state: started

0 commit comments

Comments
 (0)