make sure /usr/local/bin exists before isntall srcpkgs

This commit is contained in:
Matthew Stobbs
2025-02-08 14:27:46 -07:00
parent e0c73a81d9
commit 25b4e862d8

View File

@@ -124,6 +124,14 @@
loop_var: tappkg loop_var: tappkg
when: ansible_os_family == 'Darwin' when: ansible_os_family == 'Darwin'
- name: ensure /usr/local/bin exists
ansible.builtin.file:
state: directory
path: /usr/local/bin
owner: root
mode: '0755'
become: true
- name: install srcpkgs - name: install srcpkgs
ansible.builtin.include_tasks: ansible.builtin.include_tasks:
file: "build/{{ srcpkg }}.yml" file: "build/{{ srcpkg }}.yml"