ansible-manager/tasks/main.yml
2018-12-01 19:12:12 +01:00

32 lines
1.2 KiB
YAML

---
# tasks file for ansible-manager
- name: update cache
pacman:
update_cache: true # not required. Whether or not to refresh the master package lists. This can be run as part of a package installation or as a separate step.
become: yes
- name: install ansible program
pacman:
state: present # not required. choices: absent;latest;present. Desired state of the package.
upgrade: false # not required. Whether or not to upgrade whole system.
name: ['ansible', 'ansible-lint'] # not required. Name or list of names of the packages to install, upgrade, or remove.
become: yes
- name: install ansible-aur-git
aur:
skip_installed: True
name: ansible-aur-git
use: yay
become: yes
become_user: aur_builder
- name: clone ansible git reposotory
git:
dest: ~/Documents/ansible # required. The path of where the repository should be checked out. This parameter is required, unless C(clone) is set to C(no).
repo: ssh://git@pi2/vincent/ansible.git # required. git, SSH, or HTTP(S) protocol address of the git repository.
clone: yes # not required. If C(no), do not clone the repository if it does not exist locally
force: no
update: no