forked from LemmyNet/lemmy-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
commit f4dad26 Author: Dessalines <dessalines@users.noreply.github.com> Date: Wed Mar 27 10:46:06 2024 -0400 Fixing woodpecker. (LemmyNet#235) commit 4ec7ac7 Author: Cody Robertson <codyro@users.noreply.github.com> Date: Mon Mar 25 17:03:07 2024 -0400 AlmaLinux/RHEL 9 fixes (LemmyNet#231) * Start & enable nginx before requesting SSL certificate - Fixes issue where certbot starts nginx itself causing a conflict later in the playbook - Refs LemmyNet#229 * Fix prettier/lint issues for CI * Fix AlmaLinux/RHEL 9 playbook to run cleanly - Move internal nginx resolver to variable/conditional based off os_family - Disable SELinux in the `lemmy-almalinux.yml` playbook - Refs LemmyNet#229 * Have docker-compose/podman-compose handle the selinux label for container mounts - /app/extra_themes - /etc/postgresql.conf - Refs LemmyNet#231, LemmyNet#229 * Adjust lemmy-almalinux.yml playbook to work with SELinux enabled & enforcing - Adjust SELinux to allow HTTPD scripts and modules to connect to the network - Refs LemmyNet#231, LemmyNet#229 commit f9d87e5 Author: Sanat Sathaye <15162329+sanatsathaye@users.noreply.github.com> Date: Mon Mar 11 15:24:01 2024 +0530 Add community.docker to requirements.yml (LemmyNet#232) Co-authored-by: Sanat Sathaye <sanatsathaye@users.noreply.github.com>
- Loading branch information
1 parent
ba0d99b
commit 662a774
Showing
6 changed files
with
25 additions
and
4 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,17 +1,25 @@ | ||
pipeline: | ||
steps: | ||
prettier_markdown_check: | ||
image: tmknom/prettier | ||
commands: | ||
- prettier -c "*.md" "*.yml" "examples/vars.yml" | ||
when: | ||
- event: pull_request | ||
|
||
check_ansible_format: | ||
image: alpine:3 | ||
commands: | ||
- apk add ansible | ||
- ansible-playbook lemmy.yml --syntax-check | ||
- ansible-playbook lemmy-almalinux.yml --syntax-check | ||
- ansible-playbook uninstall.yml --syntax-check | ||
when: | ||
- event: pull_request | ||
|
||
ansible_lint: | ||
image: alpine:3 | ||
commands: | ||
- apk add ansible ansible-lint | ||
- ansible-lint --warn-list experimental lemmy.yml lemmy-almalinux.yml uninstall.yml examples/vars.yml | ||
when: | ||
- event: pull_request |
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,3 +1,4 @@ | ||
--- | ||
collections: | ||
- name: ansible.posix | ||
- name: community.docker |
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