add profile in system ands soft install
This commit is contained in:
parent
b198382c51
commit
61fe231618
@ -11,35 +11,8 @@
|
|||||||
name: ['ansible', 'ansible-lint'] # not required. Name or list of names of the packages to install, upgrade, or remove.
|
name: ['ansible', 'ansible-lint'] # not required. Name or list of names of the packages to install, upgrade, or remove.
|
||||||
become: yes
|
become: yes
|
||||||
|
|
||||||
- name: install base-devel package
|
- name: install ansible-aur-git
|
||||||
pacman:
|
aur:
|
||||||
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: ['base-devel'] # not required. Name or list of names of the packages to install, upgrade, or remove.
|
|
||||||
become: yes
|
|
||||||
|
|
||||||
- name: Create aur_builder user
|
|
||||||
user:
|
|
||||||
name: aur_builder
|
|
||||||
group: wheel
|
|
||||||
become: yes
|
|
||||||
|
|
||||||
- name: Allow aur_builder to run pacman as root
|
|
||||||
lineinfile:
|
|
||||||
path: /etc/sudoers.d/11-install-aur_builder
|
|
||||||
line: 'aur_builder ALL=(ALL) NOPASSWD: /usr/bin/pacman'
|
|
||||||
create: yes
|
|
||||||
validate: 'visudo -cf %s'
|
|
||||||
become: yes
|
|
||||||
|
|
||||||
- aur:
|
|
||||||
skip_installed: True
|
|
||||||
name: yay
|
|
||||||
use: makepkg
|
|
||||||
become: yes
|
|
||||||
become_user: aur_builder
|
|
||||||
|
|
||||||
- aur:
|
|
||||||
skip_installed: True
|
skip_installed: True
|
||||||
name: ansible-aur-git
|
name: ansible-aur-git
|
||||||
use: yay
|
use: yay
|
||||||
@ -47,8 +20,12 @@
|
|||||||
become_user: aur_builder
|
become_user: aur_builder
|
||||||
|
|
||||||
|
|
||||||
- git:
|
- 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).
|
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: https://{{ githubuser | urlencode }}:{{ githubpassword | urlencode }}@git.ducamps.win/vincent/ansible.git # required. git, SSH, or HTTP(S) protocol address of the git repository.
|
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
|
clone: yes # not required. If C(no), do not clone the repository if it does not exist locally
|
||||||
|
force: no
|
||||||
|
update: no
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user