mirror of
https://github.com/Noratrieb/vps.git
synced 2026-01-16 17:45:14 +01:00
cors-school
This commit is contained in:
parent
c0ed8f61fc
commit
ab7d6a91d6
6 changed files with 88 additions and 4 deletions
|
|
@ -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 }}"
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue