diff options
author | Sacha Chua <sacha@sachachua.com> | 2022-12-02 08:18:56 -0500 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2022-12-02 08:18:56 -0500 |
commit | 66ae0b351fe2709d583073496f3ff6812989cdd2 (patch) | |
tree | c70099fba7f9e38e6162f0dab4be0c780d65b861 /roles/prerec/tasks | |
parent | 58a16c0d64ca9ba3bc8861fbaeb19d2630de04aa (diff) | |
download | emacsconf-ansible-66ae0b351fe2709d583073496f3ff6812989cdd2.tar.xz emacsconf-ansible-66ae0b351fe2709d583073496f3ff6812989cdd2.zip |
prerec updates
Diffstat (limited to 'roles/prerec/tasks')
-rw-r--r-- | roles/prerec/tasks/main.yml | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/roles/prerec/tasks/main.yml b/roles/prerec/tasks/main.yml index 954c5a7..e44617d 100644 --- a/roles/prerec/tasks/main.yml +++ b/roles/prerec/tasks/main.yml @@ -24,22 +24,21 @@ dest: "{{ emacsconf_caption_dir }}/scripts/reencode.sh" owner: "{{ emacsconf_user }}" group: "{{ emacsconf_group }}" - # This avoids overwriting zaeph's - force: no + backup: yes mode: 0775 - name: Copy scripts for processing - tags: process-prerec + tags: process-prerec, wip template: src: "{{ item }}" - dest: "{{ emacsconf_caption_dir }}/scripts/{{ item }}" + dest: "/usr/local/bin/{{ item }}" owner: "{{ emacsconf_user }}" group: "{{ emacsconf_group }}" mode: 0775 loop: - process-prerec.sh - - update-task-status.sh + - talk - upload.sh - publish-backstage-index.sh - update-emacsconf.sh - thumbnail.sh - + - reencode.sh |