First commit

This commit is contained in:
VC
2019-09-04 09:06:55 +02:00
commit dded46ff64
144 changed files with 7495 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
- name: "Add Proxmox VE 6 recommended packages"
apt:
name: "{{ item }}"
state: present
loop:
- proxmox-ve
- postfix
- open-iscsi
- zfsutils-linux
- name: "Remove Proxmox VE 6 recommended packages"
apt:
name: "{{ item }}"
state: absent
loop:
- os-prober
- name: add missing modules for docker
modprobe:
name: "{{ item }}"
state: present
loop:
- overlay
- aufs
- name: add missing modules to boot
copy:
src: ./files/nested_docker.conf
dest: /etc/modules-load.d/nested_docker.conf
- name: "Reboot after first Install"
shell: "/sbin/shutdown -r -t 1 > /root/first_install_ok"
args:
creates: /root/first_install_ok