cors-school

This commit is contained in:
nora 2023-08-27 12:58:16 +02:00
parent c0ed8f61fc
commit ab7d6a91d6
6 changed files with 88 additions and 4 deletions

View file

@ -18,6 +18,12 @@
ansible.builtin.user:
name: root
shell: /usr/bin/fish
- name: Install useful tools
ansible.builtin.apt:
name: "{{ item }}"
state: present
with_items:
- htop
- name: Install keyring packages
ansible.builtin.apt:
name: "{{ item }}"

View file

@ -51,6 +51,14 @@
state: directory
mode: u=rwx,g=rx,o=rx
#####
# APP: cors-school, /apps/cors-school
#####
- name: Create /apps/cors-school
ansible.builtin.file:
path: /apps/cors-school
state: directory
mode: u=rwx,g=rx,o=rx
#####
# END: docker compose up!
#####
# We want this to be last so that all app-specific config has been done.