Ansible: Small maintenance
[csit.git] / resources / tools / testbed-setup / ansible / roles / vexx_hosts / tasks / main.yaml
diff --git a/resources/tools/testbed-setup/ansible/roles/vexx_hosts/tasks/main.yaml b/resources/tools/testbed-setup/ansible/roles/vexx_hosts/tasks/main.yaml
deleted file mode 100644 (file)
index decda18..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
----
-# file: roles/vexx_hosts/tasks/main.yaml
-
-- name: Ensure the system exists in Cobbler
-  cobbler_system:
-    host: "{{ cobbler_hostname }}"
-    port: 60080
-    interfaces:
-      br1:
-        ipaddress: "{{ ansible_default_ipv4.address }}"
-        macaddress: "{{ ansible_default_ipv4.macaddress }}"
-    name: "{{ hostname }}"
-    password: "{{ cobbler_password }}"
-    properties:
-      hostname: "{{ hostname }}"
-      gateway: "{{ ansible_default_ipv4.gateway }}"
-      profile: "{{ cobbler_profile }}"
-      name_servers: "{{ name_servers }}"
-      kickstart: "/var/lib/cobbler/kickstarts/{{ cobbler_profile }}.seed"
-      kernel_options: '"interface={{ ansible_default_ipv4.interface }}"'
-      netboot_enabled: yes
-    username: "{{ cobbler_username }}"
-    use_ssl: no
-    validate_certs: no
-  when: provision_enabled
-  delegate_to: localhost
-  tags:
-    - cobbler-include
-
-- name: Commit Cobbler changes
-  cobbler_sync:
-    host: "{{ cobbler_hostname }}"
-    port: 60080
-    password: "{{ cobbler_password }}"
-    username: "{{ cobbler_username }}"
-    use_ssl: no
-    validate_certs: no
-  run_once: yes
-  when: provision_enabled
-  delegate_to: localhost
-  register: __included_in_cobbler
-  notify:
-    - "Boot from network"
-    - "Reboot server"
-  tags:
-    - cobbler-include
-
-- meta: flush_handlers