Files
pi_top/tasks/purge-defaults.yaml
2025-06-23 09:39:45 -07:00

15 lines
269 B
YAML

---
- name: Create the purge path
file:
path: "{{ archive_path }}"
state: directory
mode: '0755'
- name: Move default projects
shell: |
mv {{ project_path }}/{{ item }} {{ archive_path }}
ignore_errors: true
loop: "{{ default_projects }}"
...