fix remaining packages
- testing container is starting to work on macos - still need to do testing for linux machines
This commit is contained in:
@@ -3,22 +3,23 @@
|
||||
- name: Set ghostty install method
|
||||
ansible.builtin.set_fact:
|
||||
ghostty:
|
||||
method: "{{ pkgconfig.ghostty.method[ansible_distribution] | default(pkgconfig.ghostty.method.default) }}"
|
||||
method: "{{ pkgconfig.ghostty.methods[ansible_distribution] | default(pkgconfig.ghostty.methods.default) }}"
|
||||
|
||||
- name: Set ghostty config
|
||||
ansible.builtin.set_fact:
|
||||
ghostty:
|
||||
method: "{{ ghostty.method }}"
|
||||
arch: "{{ pkgconfig.ghostty.archmap[ansible_architecture] }}"
|
||||
deps: "{{ pkgconfig.ghostty.build_deps[ansible_os_family] }}"
|
||||
vers: "{{ pkgconfig.ghostty.version }}"
|
||||
pkg: "{{ pkgconfig.ghosty[ghostty.method] }}"
|
||||
pkg: "{{ pkgconfig.ghostty[ghostty.method] }}"
|
||||
|
||||
- name: Set ghostty config for appimage install
|
||||
when:
|
||||
- ghostty.method == 'appimage'
|
||||
ansible.builtin.set_fact:
|
||||
ghostty:
|
||||
method: appimage
|
||||
method: "{{ ghostty.method }}"
|
||||
file: "Ghostty-{{ ghostty.vers }}-{{ ghostty.arch }}.AppImage"
|
||||
link_name: "{{ pkgconfig.ghostty.appimage.link_name }}"
|
||||
url: "{{ pkgconfig.ghostty.appimage.base_url }}/v{{ ghostty.vers }}/Ghostty-{{ ghostty.vers }}-{{ ghostty.arch }}.AppImage"
|
||||
|
||||
4
tasks/config/nomad.yml
Normal file
4
tasks/config/nomad.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
- name: Set nomad config
|
||||
ansible.builtin.set_fact:
|
||||
nomad:
|
||||
pkgs: "{{ pkgconfig.nomad.pkgs[ansible_system] }}"
|
||||
4
tasks/config/packer.yml
Normal file
4
tasks/config/packer.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
- name: Set packer config
|
||||
ansible.builtin.set_fact:
|
||||
packer:
|
||||
pkgs: "{{ pkgconfig.packer.pkgs[ansible_system] }}"
|
||||
5
tasks/config/tailscale.yml
Normal file
5
tasks/config/tailscale.yml
Normal file
@@ -0,0 +1,5 @@
|
||||
- name: Set tailscale config
|
||||
ansible.builtin.set_fact:
|
||||
tailscale:
|
||||
url_base: "{{ pkgconfig.tailscale.url_base }}"
|
||||
release: "{{ pkgconfig.tailscale.release[ansible_distribution_release] | default({}) }}"
|
||||
4
tasks/config/vault.yml
Normal file
4
tasks/config/vault.yml
Normal file
@@ -0,0 +1,4 @@
|
||||
- name: Set vault config
|
||||
ansible.builtin.set_fact:
|
||||
vault:
|
||||
pkgs: "{{ pkgconfig.vault.pkgs[ansible_system] }}"
|
||||
Reference in New Issue
Block a user