From 98e242df5a782c491ed6c3bd3820f84d6800ad00 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Mon, 1 Aug 2022 04:16:50 -0500 Subject: [PATCH] fix: create lua dest dir --- tasks/install-lua.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tasks/install-lua.yml b/tasks/install-lua.yml index 32a5097..5af1b21 100644 --- a/tasks/install-lua.yml +++ b/tasks/install-lua.yml @@ -47,6 +47,12 @@ lua_dest_archive: "{{ lua_dest_archive | default(lua_dest + '/lua.tar.gz') }}" when: lua_installed.rc != 0 +- name: Create Lua extraction directory + ansible.builtin.file: + path: "{{ lua_dest }}" + state: directory + mode: 0755 + - name: Download Lua ansible.builtin.get_url: url: http://www.lua.org/ftp/lua-{{ lua_version }}.tar.gz