From 6b7d2ff9a99abff24e5a2f9bbf52eeddfe6511f3 Mon Sep 17 00:00:00 2001 From: Valentin CZERYBA Date: Sun, 12 Feb 2023 18:13:05 +0100 Subject: [PATCH] add configure file --- roles/deploy-web/tasks/configure.yml | 12 ++++++++++++ roles/deploy-web/tasks/main.yml | 4 ++++ 2 files changed, 16 insertions(+) create mode 100644 roles/deploy-web/tasks/configure.yml diff --git a/roles/deploy-web/tasks/configure.yml b/roles/deploy-web/tasks/configure.yml new file mode 100644 index 0000000..4f1de1d --- /dev/null +++ b/roles/deploy-web/tasks/configure.yml @@ -0,0 +1,12 @@ +- name: Deploy stats script + import_tasks: stats.yml + tags: ["stats"] + +- name: Configure blacklist script + import_tasks: blacklist.yml + tags: [ "blacklist" ] + + +- name: Configure supervision script + import_tasks: supervision.yml + tags: ["supervision"] \ No newline at end of file diff --git a/roles/deploy-web/tasks/main.yml b/roles/deploy-web/tasks/main.yml index 22d0e52..092474b 100644 --- a/roles/deploy-web/tasks/main.yml +++ b/roles/deploy-web/tasks/main.yml @@ -2,6 +2,10 @@ import_tasks: deploy.yml tags: ["deploy"] +- name: Configure project web + import_tasks: configure.yml + tags: [ "configure" ] + - name: Destrpy project web import_tasks: destroy.yml