31 lines
618 B
YAML
31 lines
618 B
YAML
|
---
|
||
|
- name: Queries package manager for graphical instalation
|
||
|
package:
|
||
|
name:
|
||
|
- scrot
|
||
|
- network-manager-applet
|
||
|
- acpi
|
||
|
register: pkg_result
|
||
|
retries: 3
|
||
|
until: pkg_result is succeeded
|
||
|
become: yes
|
||
|
|
||
|
- name: Clone scripts git repo
|
||
|
git:
|
||
|
repo: '{{ scripts.git }}'
|
||
|
dest: '.local/src/scripts'
|
||
|
|
||
|
- name: Find scripts
|
||
|
find:
|
||
|
path: '.local/src/scripts'
|
||
|
pattern: "*"
|
||
|
register: scripts
|
||
|
|
||
|
- name: Link scripts
|
||
|
file:
|
||
|
src: '/home/{{ user.name }}/{{ item.path }}'
|
||
|
dest: '.local/bin/{{ item.path | basename }}'
|
||
|
state: link
|
||
|
force: yes
|
||
|
with_items: '{{ scripts.files }}'
|