This repository has been archived by the owner on Aug 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from systemli/patch-1
Bump Integration Workflow to v1.0.0
- Loading branch information
Showing
13 changed files
with
101 additions
and
107 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 @@ | ||
--- | ||
skip_list: | ||
- fqcn-builtins | ||
exclude_paths: | ||
- molecule/ | ||
- .github/ |
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
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
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,37 +1,36 @@ | ||
--- | ||
|
||
- name: update lua alternatives | ||
- name: Update lua alternatives | ||
community.general.alternatives: | ||
name: lua-interpreter | ||
link: /usr/bin/lua | ||
path: "/usr/bin/lua{{ prosody_lua_version }}" | ||
|
||
- name: reload systemd | ||
- name: Reload systemd | ||
ansible.builtin.systemd: | ||
daemon_reload: true | ||
|
||
- name: reload prosody config | ||
- name: Reload prosody config | ||
ansible.builtin.systemd: | ||
name: prosody | ||
state: reloaded | ||
|
||
- name: restart prosody | ||
- name: Restart prosody | ||
ansible.builtin.systemd: | ||
name: prosody | ||
state: restarted | ||
daemon_reload: true | ||
|
||
- name: stop prosody | ||
- name: Stop prosody | ||
ansible.builtin.systemd: | ||
name: prosody | ||
state: stopped | ||
|
||
- name: start prosody | ||
- name: Start prosody | ||
ansible.builtin.systemd: | ||
name: prosody | ||
state: started | ||
|
||
- name: restart saslauthd | ||
- name: Restart saslauthd | ||
ansible.builtin.systemd: | ||
name: saslauthd | ||
state: restarted |
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
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,6 @@ | ||
--- | ||
roles: | ||
- name: systemli.apt_repositories | ||
version: 1.0.5 | ||
collections: | ||
- name: community.general |
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
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
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
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,26 +1,30 @@ | ||
--- | ||
|
||
- include_tasks: prosody.yml | ||
- name: Include Prosody Tasks | ||
ansible.builtin.include_tasks: prosody.yml | ||
tags: | ||
- prosody | ||
|
||
- include_tasks: inactive.yml | ||
- name: Include Tasks for Inactive Users Scripts | ||
ansible.builtin.include_tasks: inactive.yml | ||
tags: | ||
- prosody | ||
|
||
- include_tasks: ldap.yml | ||
- name: Include Tasks for LDAP Authentication | ||
ansible.builtin.include_tasks: ldap.yml | ||
when: prosody_authentication == "cyrus" | ||
tags: | ||
- prosody | ||
- ldap | ||
|
||
- include_tasks: web.yml | ||
when: prosody_web_dir|default(False) and prosody_web_user|default(False) | ||
- name: Include Tasks for Web UI | ||
ansible.builtin.include_tasks: web.yml | ||
when: prosody_web_dir | default(False) and prosody_web_user | default(False) | ||
tags: | ||
- prosody | ||
- web | ||
|
||
- include_tasks: goss.yml | ||
- name: Include Tasks for Goss Tests | ||
ansible.builtin.include_tasks: goss.yml | ||
tags: | ||
- prosody | ||
- goss |
Oops, something went wrong.