File tree Expand file tree Collapse file tree 3 files changed +10
-1
lines changed
Expand file tree Collapse file tree 3 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ playbook.yml
44hosts
55/vars /
66* .swp
7+ /worktrees /
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ climate_apps_domains:
55 - api2.example.com
66cadt_api_proxy : true
77cadt_api_version : latest
8+ cadt_apt_prerelease : false
89
910# Path to the CADT API in the proxy - include leading and trailing slash
1011cadt_api_proxy_path : " /api/"
Original file line number Diff line number Diff line change 99 - ' vars'
1010 tags : cadt
1111
12+ - name : Remove unused CADT repository
13+ become : true
14+ ansible.builtin.apt_repository :
15+ repo : " deb [arch={{ cadt_repo_arch }} signed-by=/usr/share/keyrings/chia.gpg] https://repo.chia.net/{{ (cadt_apt_prerelease | bool) | ternary('cadt', 'cadt-test') }}/debian/ stable main"
16+ state : absent
17+ tags : cadt
18+
1219- name : Add CADT Repository
1320 become : true
1421 ansible.builtin.apt_repository :
15- repo : deb [arch={{ cadt_repo_arch }} signed-by=/usr/share/keyrings/chia.gpg] https://repo.chia.net/cadt/debian/ stable main
22+ repo : " deb [arch={{ cadt_repo_arch }} signed-by=/usr/share/keyrings/chia.gpg] https://repo.chia.net/{{ (cadt_apt_prerelease | bool) | ternary(' cadt-test', 'cadt') }} /debian/ stable main"
1623 update_cache : true
1724 tags : cadt
1825
You can’t perform that action at this time.
0 commit comments