diff options
| author | Luke Hoersten <[email protected]> | 2026-07-31 14:30:30 -0500 |
|---|---|---|
| committer | Luke Hoersten <[email protected]> | 2026-07-31 14:30:30 -0500 |
| commit | 4a881bd72dceb1d595b5f73554f466bc4540c739 (patch) | |
| tree | 6024a7066e0d99d11312d5e95ab311b1d2ef1543 /lnurld/build/tasks | |
| parent | 9082f4e78d3d948b38d6030564ea82056168165d (diff) | |
The pinned golang-1.21-go was a noble leftover; the hand symlink
shadowed the real go on 26.04.
Diffstat (limited to 'lnurld/build/tasks')
| -rw-r--r-- | lnurld/build/tasks/main.yaml | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/lnurld/build/tasks/main.yaml b/lnurld/build/tasks/main.yaml index 5f40b93..79488bc 100644 --- a/lnurld/build/tasks/main.yaml +++ b/lnurld/build/tasks/main.yaml @@ -9,17 +9,11 @@ group: "{{ansible_user}}" mode: "0755" +# The unversioned package tracks the release default (1.26 on 26.04) and +# provides /usr/bin/go itself, so no pinned version or hand symlink. - name: install golang become: yes - apt: name="golang-1.21-go" - -- name: link go bin - become: yes - file: - src: "/usr/lib/go-1.21/bin/go" - dest: "/usr/bin/go" - state: "link" - mode: "0755" + apt: name="golang-go" - name: git checkout lnurld git: |
