--- - name: Install Lua for RedHat based systems become: true ansible.builtin.dnf: name: - luajit - lua - luarocks state: present when: ansible_facts.os_family == 'RedHat' - name: Install Lua for Debian based systems become: true ansible.builtin.apt: name: - luajit - "lua{{ debian_lua_version | default(5.4) }}" - luarocks state: present when: ansible_facts.os_family == 'Debian' - name: Install Lua for MacOS community.general.homebrew: name: - lua - luarocks - luajit state: present when: ansible_facts.distribution == 'MacOSX' - name: Install Lua for Arch become: true community.general.pacman: name: - lua - luajit - luarocks state: present when: ansible_facts.distribution == 'Archlinux'