diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2021-12-07 21:42:58 +0000 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2021-12-08 17:52:51 +0000 |
commit | 56aa88c7e272ccfd645695103d5bca653005aad4 (patch) | |
tree | 757e44da79e5d6cf8c9f572ef6c426d91fb169c6 /roles/vmm/tasks/autoinstall-configuration.yml | |
parent | ee9a624949497a4a3944b24e1b3d9c192dd3d444 (diff) | |
download | rules-56aa88c7e272ccfd645695103d5bca653005aad4.tar.gz |
roles/vmm: Use host kernels for openbsd guests
Diffstat (limited to 'roles/vmm/tasks/autoinstall-configuration.yml')
-rw-r--r-- | roles/vmm/tasks/autoinstall-configuration.yml | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/roles/vmm/tasks/autoinstall-configuration.yml b/roles/vmm/tasks/autoinstall-configuration.yml deleted file mode 100644 index e05b11c..0000000 --- a/roles/vmm/tasks/autoinstall-configuration.yml +++ /dev/null @@ -1,27 +0,0 @@ -- name: include httpd role variables - include_vars: "{{ inventory_dir }}/roles/httpd/defaults/main.yml" - -- name: create autoinstall directory - file: - path: /var/www/htdocs/autoinstall - owner: www - group: www - mode: 0700 - state: directory - -- name: generate autoinstall files - template: - src: autoinstall.conf.j2 - dest: "/var/www/htdocs/autoinstall/{{ item.lladdr }}-install.conf" - owner: www - group: www - mode: 0640 - loop: "{{ vmm_vms }}" - -- name: generate httpd configuration - template: - src: httpd.conf.j2 - dest: "{{ httpd_configuration_dir }}/autoinstall.conf" - owner: 0 - group: 0 - mode: 0640 |