From c4edd14b8aaf65d1db86074b0109b89ae609d4b3 Mon Sep 17 00:00:00 2001 From: binary Date: Wed, 2 Dec 2020 18:36:25 +0100 Subject: Refactor based on bhyve setup --- roles/vmm/tasks/generate_vmconf.yml | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 roles/vmm/tasks/generate_vmconf.yml (limited to 'roles/vmm/tasks/generate_vmconf.yml') diff --git a/roles/vmm/tasks/generate_vmconf.yml b/roles/vmm/tasks/generate_vmconf.yml deleted file mode 100644 index e8f8245..0000000 --- a/roles/vmm/tasks/generate_vmconf.yml +++ /dev/null @@ -1,37 +0,0 @@ - -# vmm ~~ tasks/generate_vmconf.yml -# Generate vm.conf on hypervisor. - ---- - -- name: Start ip forwarding - shell: sysctl net.inet.ip{{ item }}.forwarding=1 - loop: - - "" - - "6" - -- name: Enable ip forwarding - lineinfile: - path: /etc/sysctl.conf - regexp: "^net.inet.ip{{ item }}.forwarding=" - line: "net.inet.ip{{ item }}.forwarding=1" - loop: - - "" - - "6" - -- name: Create network switch - shell: echo "add {{ hypervisor.interface }}" > /etc/hostname.{{ vmm.switch.iface }} - -- name: Start network switch - shell: "sh /etc/netstart {{ vmm.switch.iface }}" - -- name: Generate vmm configuration - template: - src: templates/vm.conf.j2 - dest: "{{ vmm.config_file }}" - -- name: Restart vmd - service: - name: vmd - state: restarted - enabled: true -- cgit v1.2.3