mirror of
https://github.com/auricom/home-cluster.git
synced 2025-10-02 00:34:25 +02:00
16 lines
346 B
YAML
16 lines
346 B
YAML
---
|
|
- name: scripts | create directory
|
|
ansible.builtin.file:
|
|
state: directory
|
|
path: "~/.local/scripts"
|
|
mode: 0700
|
|
|
|
- name: scripts | copy scripts
|
|
ansible.builtin.copy:
|
|
src: "scripts/{{ item }}"
|
|
dest: "~/.local/scripts"
|
|
mode: 0755
|
|
with_items:
|
|
- backup-local-usb-disk-one.bash
|
|
- backup-local-usb-disk-two.bash
|