-
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6f9aedc
commit 4833f29
Showing
3 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
*~ | ||
.vagrant | ||
*.retry | ||
.cache/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- | ||
|
||
- name: checking variable... | ||
block: | ||
- name: bbb_letsencrypt_email | ||
debug: | ||
msg: "value: {{ bbb_letsencrypt_email }}" | ||
when: bbb_letsencrypt_enable | ||
- name: check bbb_coturn_secret | ||
debug: | ||
msg: "value: {{ bbb_coturn_secret }}" | ||
when: bbb_coturn_enable | ||
- name: check bbb_greenlight_secret | ||
debug: | ||
msg: "value: {{ bbb_greenlight_secret }}" | ||
when: bbb_greenlight_enable | ||
- name: check bbb_greenlight_db_password | ||
debug: | ||
msg: "value: {{ bbb_greenlight_db_password }}" | ||
when: bbb_greenlight_enable | ||
- name: check distribution | ||
debug: | ||
msg: "distribution should be bionic and was detected as {{ ansible_distribution_release }}" | ||
failed_when: ansible_distribution_release | lower != 'xenial' | ||
rescue: | ||
- name: CHECK YOUR VARIABLES! | ||
debug: | ||
msg: "{{ ansible_failed_result }}" | ||
failed_when: ansible_failed_result.failed | ||
tags: | ||
- checkvars |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
--- | ||
- import_tasks: checkvars.yml | ||
|
||
- name: Install required packages | ||
apt: | ||
name: "{{ bbb_required_packages }}" | ||
|