-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove downgrade docker step * Remove run actions on push * Add scheduled job * Refactor ci.yml * Change job name to release * Update galaxy-action version * Add git_branch parameter * Add new distributions * Remove old distributions * Add new molecule scenarios * Change rabbitmq's parameter name * Remove idempotence test * Refactoring molecule files * Add wait task * Remove unnecessary options * Lint * Add retries and delay * Add workaround for Rockylinux * Remove nginx from prepare.yml * Remove redhat from vars * Add unified variables for redhat * Add RedHat.yml file * Remove become statements from Debian.yml * Remove become statements from RedHat_post.yml * Remove become statements from ssl.yml * Add become statements * Remove old redhat tasks * Refactor main.yml * Remove become statements from handlers * Format files * Update example playbook * Lint main.yml * Add epel installation * Add onlyoffice gpg key * Rename variable * Refactor RedHat.yml * Add nginx gpg key * Installation of xorg-x11-server-Xvfb for RedHat7 * Add condition for installation from repository * Add msttcore fonts package * Revert "Add msttcore fonts package" This reverts commit 9e6a7bc. * Add condition * Update variable nginx_package * Remove unused variables * Move post install tasks into RedHat.yml * Revert "Move post install tasks into RedHat.yml" This reverts commit f3b0bc4. * Revert "Remove old redhat tasks" This reverts commit be11af4. * Revert "Add RedHat.yml file" This reverts commit 8bcfcf1. * Revert "Remove redhat from vars" This reverts commit 7b75b39. * Revert "Add unified variables for redhat" This reverts commit d4f23b8. * Update include_vars and include_tasks * Revert include variables and tasks
- Loading branch information
Showing
12 changed files
with
254 additions
and
283 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
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 @@ | ||
--- | ||
db_server_host: localhost | ||
db_server_name: onlyoffice | ||
db_server_user: onlyoffice | ||
|
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,14 +1,13 @@ | ||
- name: Restart-ds | ||
ansible.builtin.systemd: | ||
name: "{{ item }}" | ||
state: restarted | ||
with_items: | ||
- 'ds-converter' | ||
- 'ds-docservice' | ||
become: yes | ||
--- | ||
- name: Restart-ds | ||
ansible.builtin.systemd: | ||
name: "{{ item }}" | ||
state: restarted | ||
with_items: | ||
- "ds-converter" | ||
- "ds-docservice" | ||
|
||
- name: Restart-nginx | ||
ansible.builtin.service: | ||
name: "nginx" | ||
state: restarted | ||
become: yes | ||
- name: Restart-nginx | ||
ansible.builtin.service: | ||
name: "nginx" | ||
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
--- | ||
- name: Converge | ||
hosts: all | ||
become: true | ||
vars: | ||
postgresql_global_config_options: | ||
- option: listen_addresses | ||
|
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,5 +1,5 @@ | ||
--- | ||
roles: | ||
- src: geerlingguy.redis | ||
- src: geerlingguy.postgresql | ||
- src: onlyoffice.rabbitmq | ||
- src: geerlingguy.redis | ||
- src: geerlingguy.postgresql | ||
- src: onlyoffice.rabbitmq |
Oops, something went wrong.