You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix grammar in task names (mailx: "make" -> "makes",
policycoreutils: "are" -> "is"). Sort template module parameters
alphabetically in mailx. Rewrite all three READMEs from table
format to structured bullet format with skip variables section.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
15
* Update pre-commit hooks to latest versions
16
16
* Unify CONTRIBUTING and convert from reStructuredText to Markdown
17
17
18
+
### Fixed
19
+
20
+
***role:apache_httpd**: Fix `apache_httpd__mod_security_coreruleset_version` default value in README (4.4.0 -> 4.24.1), fix prefork variable names in README (`spare_threads` -> `spare_servers`), fix various typos ("best practise", "Tipp")
21
+
***role:mailx**: Fix grammar in task name ("make" -> "makes"), sort template module parameters alphabetically
22
+
***role:policycoreutils**: Fix grammar in task name ("are" -> "is")
23
+
18
24
### Breaking Changes
19
25
20
26
***role:nfs_server**: Rework `nfs_server__exports` from a list of strings to a list of dictionaries with new `path`, `clients`, `owner`, `group`, and `mode` subkeys
@@ -23,6 +29,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
23
29
24
30
### Added
25
31
32
+
* Add `playbooks/README.md` documenting all playbooks with their roles in execution order and available skip variables
33
+
***role:apache_httpd**: Add platform-specific behavior section, wsgi example, and document localhost endpoints in README
34
+
***role:apache_httpd**: Add skip variables section to README linking to relevant playbooks
35
+
***role:mailx**: Add skip variables section to README linking to relevant playbooks
36
+
***role:policycoreutils**: Add skip variables section to README linking to relevant playbooks
37
+
***role:yum_utils**: Add skip variables section to README linking to relevant playbooks
26
38
***plugin:bitwarden_item**: Add file-based item cache to reduce `bw serve` API calls, preventing crashes under load. Cache is stored in `$XDG_RUNTIME_DIR` (RAM-backed tmpfs) with `/tmp` fallback. After create/edit operations, the cache is updated inline to avoid expensive full re-syncs, with a 1-second sleep as rate limit to prevent Bitwarden API errors. Convert `is_unlocked` to a property to fix it never being called.
27
39
***role:freeipa_server**: Add `--diff` support for all FreeIPA modules and add `freeipa_server:configure` tag
28
40
***role:mariadb_server**: Add `mariadb_server__cnf_wsrep_log_conflicts` and `mariadb_server__cnf_wsrep_retry_autocommit` variables
Copy file name to clipboardExpand all lines: roles/mailx/README.md
+16-4Lines changed: 16 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,13 +1,25 @@
1
1
# Ansible Role linuxfabrik.lfops.mailx
2
2
3
-
This role installs [mailx](http://heirloom.sourceforge.net/mailx.html) and deploys a bash wrapper script that make sending mail easier to `/root/send-mail`.
3
+
This role installs [mailx](http://heirloom.sourceforge.net/mailx.html) and deploys a bash wrapper script that makes sending mail easier to `/root/send-mail`.
4
4
5
5
6
6
## Tags
7
7
8
-
| Tag | What it does | Reload / Restart |
9
-
| --- | ------------ | ---------------- |
10
-
|`mailx`| Installs mailx and deploys wrapper script | - |
8
+
`mailx`
9
+
10
+
* Installs the mailx package.
11
+
* Deploys a bash wrapper script to `/root/send-mail`.
12
+
* Triggers: none.
13
+
14
+
15
+
## Skip Variables
16
+
17
+
This role is used in several playbooks that provide skip variables to disable specific dependencies. See the playbooks documentation for details:
0 commit comments