Skip to content

Commit 6bd7518

Browse files
authored
Merge pull request #50 from madnicendio/master
Bump to ThinLinc 4.19
2 parents d83e282 + 41ae07a commit 6bd7518

File tree

5 files changed

+13
-5
lines changed

5 files changed

+13
-5
lines changed

CHANGELOG.md

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

1010
### Changed
1111

12+
## [1.13] - 2025-07-09
13+
14+
### Changed
15+
16+
- Updated to 4.19.0
17+
- Updated paths for HA and subclusters
18+
1219
## [1.12] - 2025-01-07
1320

1421
### Changed
@@ -117,7 +124,8 @@ First release.
117124

118125
- An Ansible role to install the ThinLinc server software.
119126

120-
[unreleased]: https://github.com/cendio/ansible-role-thinlinc-server/compare/v1.12...HEAD
127+
[unreleased]: https://github.com/cendio/ansible-role-thinlinc-server/compare/v1.13...HEAD
128+
[1.13]: https://github.com/cendio/ansible-role-thinlinc-server/compare/v1.12...v1.13
121129
[1.12]: https://github.com/cendio/ansible-role-thinlinc-server/compare/v1.11...v1.12
122130
[1.11]: https://github.com/cendio/ansible-role-thinlinc-server/compare/v1.10...v1.11
123131
[1.10]: https://github.com/cendio/ansible-role-thinlinc-server/compare/v1.9...v1.10

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ ThinLinc End User License Agreement. NOTE: Setting this to yes is a
3636
requirement for installing and using ThinLinc.
3737
3838
```yaml
39-
thinlinc_version: "4.18.0"
39+
thinlinc_version: "4.19.0"
4040
```
4141
4242
ThinLinc version number.

defaults/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
thinlinc_accept_eula: "no"
55

6-
thinlinc_version: "4.18.0"
6+
thinlinc_version: "4.19.0"
77
thinlinc_bundle_path: "tl-{{ thinlinc_version }}-server.zip"
88

99
thinlinc_autoinstall_dependencies: "yes"

library/tlconfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
'''
1919

2020
EXAMPLES = '''
21-
- tlconfig: param=/vsmserver/HA/enabled value=1
21+
- tlconfig: param=/HA/enabled value=1
2222
'''
2323

2424
RETURN = '''

tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878

7979
- name: Configure list of agent servers
8080
tlconfig:
81-
param: /vsmserver/subclusters/Default/agents
81+
param: /subclusters/Default/agents
8282
value: "{{ groups['thinlinc_agents'] | default(['localhost'], true) | join(' ') }}"
8383
notify: restart vsmserver
8484
when: "'thinlinc_masters' in group_names"

0 commit comments

Comments
 (0)