Skip to content

Commit 35f9eb7

Browse files
committed
Handle thinlinc_emails as a YAML list
1 parent 522d6a4 commit 35f9eb7

3 files changed

Lines changed: 6 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Changed
1111

12+
- thinlinc_emails is now a YAML list instead of a space-separated string
13+
1214
## [1.14] - 2026-01-05
1315

1416
### Changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ dependencies along with the ThinLinc software. If set to "no", the
5757
role assumes that you will take care of it.
5858
5959
```yaml
60-
thinlinc_emails: "root@localhost"
60+
thinlinc_emails:
61+
- "root@localhost"
6162
```
6263
63-
Administrative email addresses to receive license warnings. Multiple
64-
addresses are separated by spaces.
64+
A list of administrative email addresses to receive license warnings.
6565
6666
```yaml
6767
thinlinc_printers: "yes"

templates/thinlinc-setup.answers.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# {{ ansible_managed }}
22
install-gtk={{ thinlinc_autoinstall_dependencies | ternary('yes', 'no', 'no') }}
3-
email-address={{ thinlinc_emails }}
3+
email-address={{ thinlinc_emails | default([]) | join(' ') }}
44
install-python-ldap={{ thinlinc_autoinstall_dependencies | ternary('yes', 'no', 'no') }}
55
agent-hostname-choice={{ thinlinc_hostname_choice }}
66
manual-agent-hostname={{ thinlinc_manual_agent_hostname }}

0 commit comments

Comments
 (0)