Add First Script - Video Compression (#40)
* 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/.
This commit is contained in:
16
tasks/general/scripts/install.yml
Normal file
16
tasks/general/scripts/install.yml
Normal file
@ -0,0 +1,16 @@
|
||||
---
|
||||
# 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'
|
Reference in New Issue
Block a user