This repository has been archived on 2021-11-15. You can view files and clone it, but cannot push or open issues or pull requests.
ansible/tasks/main.yml

28 lines
694 B
YAML

- name: "Add Ansible repository"
apt_repository:
repo: "ppa:ansible/ansible"
state: present
- name: "Install Packages"
apt:
state: present
name: "{{ ansible_packages }}"
- name: "Get the Proxmox Ansible inventory"
ansible.builtin.get_url:
url: "https://github.com/xezpeleta/Ansible-Proxmox-inventory/raw/master/proxmox.py"
dest: "/etc/ansible/proxmox.py"
mode: "0777"
- name: "Copy the ansible config"
ansible.builtin.template:
src: "ansible.cfg.j2"
dest: "/etc/ansible/ansible.cfg"
mode: "0644"
- name: "Copy the inventory config"
ansible.builtin.template:
src: "proxmox.json.j2"
dest: "/etc/ansible/proxmox.json"
mode: "0644"