From 76b62187fe90cadf1d52c52605934af283e9f2ee Mon Sep 17 00:00:00 2001 From: Matthew Reschke Date: Mon, 6 Jul 2020 11:46:01 -0600 Subject: [PATCH] Readme updates --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index c9b5e94..35cdae9 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,17 @@ when: ansible_os_family == "Archlinux" and ansible_lsb.id == "ManjaroLinux" # Copy scripts to /usr/local/bin - include_tasks: ../../../functions/copy_usr-local-bin.yml +# Copy globs +- name: Copying globs + copy: + src: "{{ item }}" + dest: /usr/local/bin/ + owner: '{{ superuser }}' + group: '{{ supergroup }}' + mode: '0775' + with_fileglob: + - files/bin/* + # Copy nginx.conf - name: Copying /etc/nginx/nginx.conf copy: