mirror of
https://github.com/Websoft9/websoft9.git
synced 2025-01-24 10:17:15 +08:00
15 lines
553 B
YAML
15 lines
553 B
YAML
- name: Create credentials Folder
|
|
file:
|
|
path: /credentials
|
|
state: directory
|
|
|
|
- name: Create credentials Folder
|
|
file:
|
|
path: /data/apps/{{appname}}
|
|
state: directory
|
|
|
|
- name: Save .env and init_without_docker.sh
|
|
shell : |
|
|
wget -N https://raw.githubusercontent.com/Websoft9/StackHub/main/apps/roles/{{appname}}/templates/.env -O /data/apps/{{appname}}/.env
|
|
wget -N https://raw.githubusercontent.com/Websoft9/StackHub/main/apps/roles/{{appname}}/templates/init_without_docker.sh -O /data/apps/{{appname}}/init_without_docker.sh
|