Chad
6d2b20aafe
* Script is working well. Maybe not its final resting place but adding it to the repo here for now. * Add Signal to favorites after Delta Chat. * Fix the a and v parameters never being used. * New file to copy all scripts to /usr/local/bin/. * Call the new file which installs everything under files/scripts/.
17 lines
395 B
YAML
17 lines
395 B
YAML
---
|
|
# Copy everything from PROJECT/files/scripts/ to /usr/local/bin/.
|
|
|
|
- name: General | Scripts | Install | Ensure Directory Exists
|
|
ansible.builtin.file:
|
|
path: '{{ global_bin }}'
|
|
state: directory
|
|
mode: '0755'
|
|
|
|
- name: General | Scripts | Install | Copy Files
|
|
copy:
|
|
src: 'scripts/'
|
|
dest: "{{ global_bin }}/"
|
|
owner: root
|
|
group: "{{ root_group }}"
|
|
mode: '0755'
|