mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-24 21:51:03 +01:00
Renamed modes
This commit is contained in:
parent
f180c14e06
commit
c7d6e8c68c
@ -1,12 +1,16 @@
|
|||||||
# General
|
# General
|
||||||
reset_files: false # Cleans up all CyMaIS files. It's necessary to run to whole playbook and not particial roles when using this function.
|
|
||||||
verbose: false # Prints well formated debug information
|
|
||||||
test_run: false # Executes test routines instead of productive routines
|
|
||||||
database_delay: "0" # Database delay to wait for the central database before continue tasks
|
database_delay: "0" # Database delay to wait for the central database before continue tasks
|
||||||
top_domain: "localhost" # Change this in inventory to your domain
|
top_domain: "localhost" # Change this in inventory to your domain
|
||||||
ip4_address: "127.0.0.1" # Change thie in inventory to the ip address of your server
|
ip4_address: "127.0.0.1" # Change thie in inventory to the ip address of your server
|
||||||
backups_folder_path: "/Backups/" # Path to the backups folder
|
backups_folder_path: "/Backups/" # Path to the backups folder
|
||||||
|
|
||||||
|
# Mode
|
||||||
|
|
||||||
|
# The following modes can be combined with each other
|
||||||
|
mode_reset: false # Cleans up all CyMaIS files. It's necessary to run to whole playbook and not particial roles when using this function.
|
||||||
|
mode_verbose: false # Prints well formated debug information
|
||||||
|
mode_test: false # Executes test routines instead of productive routines
|
||||||
|
|
||||||
# Server Tact Variables
|
# Server Tact Variables
|
||||||
|
|
||||||
## Ours in which the server is 100% working. Rest of the time is reserved for maintanance
|
## Ours in which the server is 100% working. Rest of the time is reserved for maintanance
|
||||||
|
@ -45,7 +45,7 @@
|
|||||||
file:
|
file:
|
||||||
path: "{{ backup_docker_to_local_folder }}databases.csv"
|
path: "{{ backup_docker_to_local_folder }}databases.csv"
|
||||||
state: absent
|
state: absent
|
||||||
when: reset_files | bool and run_once_backup_docker_to_local is not defined
|
when: mode_reset | bool and run_once_backup_docker_to_local is not defined
|
||||||
|
|
||||||
- name: seed database values
|
- name: seed database values
|
||||||
command:
|
command:
|
||||||
|
@ -16,19 +16,19 @@
|
|||||||
command:
|
command:
|
||||||
cmd: "docker stop discourse_application"
|
cmd: "docker stop discourse_application"
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
when: reset_files | bool
|
when: mode_reset | bool
|
||||||
|
|
||||||
- name: "rm container discourse_application"
|
- name: "rm container discourse_application"
|
||||||
command:
|
command:
|
||||||
cmd: "docker rm discourse_application"
|
cmd: "docker rm discourse_application"
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
when: reset_files | bool
|
when: mode_reset | bool
|
||||||
|
|
||||||
- name: "cleanup central database from {{docker_compose_project_name}}_default network"
|
- name: "cleanup central database from {{docker_compose_project_name}}_default network"
|
||||||
command:
|
command:
|
||||||
cmd: "docker network disconnect discourse_default central-{{ database_type }}"
|
cmd: "docker network disconnect discourse_default central-{{ database_type }}"
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
when: reset_files | bool
|
when: mode_reset | bool
|
||||||
|
|
||||||
- name: add docker-compose.yml
|
- name: add docker-compose.yml
|
||||||
template: src=docker-compose.yml.j2 dest={{docker_compose_instance_directory}}docker-compose.yml
|
template: src=docker-compose.yml.j2 dest={{docker_compose_instance_directory}}docker-compose.yml
|
||||||
|
@ -65,11 +65,10 @@
|
|||||||
become: false
|
become: false
|
||||||
delegate_to: localhost
|
delegate_to: localhost
|
||||||
|
|
||||||
|
|
||||||
- name: show variable information
|
- name: show variable information
|
||||||
debug:
|
debug:
|
||||||
msg: "hosts_path: {{hosts_path}}\nmatrix_inventory_tmp_dir:{{ matrix_inventory_tmp_dir }}"
|
msg: "hosts_path: {{hosts_path}}\nmatrix_inventory_tmp_dir:{{ matrix_inventory_tmp_dir }}"
|
||||||
when: verbose | bool
|
when: mode_verbose | bool
|
||||||
|
|
||||||
- name: install requirements
|
- name: install requirements
|
||||||
local_action: command just roles
|
local_action: command just roles
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
file:
|
file:
|
||||||
path: "{{ docker_compose_instance_directory }}"
|
path: "{{ docker_compose_instance_directory }}"
|
||||||
state: absent
|
state: absent
|
||||||
when: reset_files | bool
|
when: mode_reset | bool
|
||||||
|
|
||||||
- name: "create {{docker_compose_instance_directory}}"
|
- name: "create {{docker_compose_instance_directory}}"
|
||||||
file:
|
file:
|
||||||
|
@ -2,4 +2,4 @@
|
|||||||
command: >-
|
command: >-
|
||||||
certbot certonly --agree-tos --email {{ administrator_email }}
|
certbot certonly --agree-tos --email {{ administrator_email }}
|
||||||
--non-interactive --webroot -w /var/lib/letsencrypt/ -d {{ domain }}
|
--non-interactive --webroot -w /var/lib/letsencrypt/ -d {{ domain }}
|
||||||
{{ '--test-cert' if test_run | bool else '' }}
|
{{ '--test-cert' if mode_test | bool else '' }}
|
Loading…
Reference in New Issue
Block a user