You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
395 B
28 lines
395 B
- name: create bin dir
|
|
file:
|
|
path: ~/bin
|
|
state: directory
|
|
|
|
|
|
- name: copy scripts
|
|
copy:
|
|
src: bin/{{ item }}
|
|
dest: /home/pi/bin
|
|
owner: pi
|
|
group: pi
|
|
mode: '0744'
|
|
with_items:
|
|
- blini.py
|
|
- updatesys
|
|
- borg-daily
|
|
- showtemp
|
|
- installborg.sh
|
|
- pingbrambel.sh
|
|
|
|
- name: adding groups to pi user
|
|
become: true
|
|
user:
|
|
name: pi
|
|
groups: docker,video
|
|
|
|
|
|
|