init commit

This commit is contained in:
2025-06-23 09:39:45 -07:00
commit 415d1536fb
10 changed files with 333 additions and 0 deletions

15
tasks/purge-defaults.yaml Normal file
View File

@ -0,0 +1,15 @@
---
- 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 }}"
...