From f45c356ed2c26e17de69f0de8f0686c8c6f70d7c Mon Sep 17 00:00:00 2001 From: Elinor Montmasson Date: Fri, 2 Aug 2024 10:33:41 +0200 Subject: [PATCH] playbooks/cluster_setup_configure_hosts.yaml: remove obsolete task Remove the obsolete task "remove the static ip previously setup". File "000-static_ip.network" was initially installed in the playbook "cluster_setup_static_ip.yaml", but this playbook was removed in commit [1]. There is now no other reference to the file "000-static_ip.network" or its template "000-static-ip.network.j2", the latter has been removed in commit [2]. [1]: https://github.com/seapath/ansible/commit/29b3c94cc0b19f4c1f3c2a658eb432d96ebcc497 [2]: https://github.com/seapath/ansible/commit/59bf7605116314374fc67970bb6b7059fd4aac92 Signed-off-by: Elinor Montmasson --- playbooks/cluster_setup_configure_hosts.yaml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/playbooks/cluster_setup_configure_hosts.yaml b/playbooks/cluster_setup_configure_hosts.yaml index 3e50c15c7..7d37b0545 100644 --- a/playbooks/cluster_setup_configure_hosts.yaml +++ b/playbooks/cluster_setup_configure_hosts.yaml @@ -5,13 +5,4 @@ --- - import_playbook: cluster_setup_kernel_params.yaml - import_playbook: cluster_setup_configure_hugepages.yaml -- name: remove the static ip previously setup - hosts: - - cluster_machines - - standalone_machine - tasks: - - name: Remove file /etc/systemd/network/000-static_ip.network - file: - path: /etc/systemd/network/000-static_ip.network - state: absent - import_playbook: cluster_setup_network.yaml