fix(workstation): added missing environment flag and force file permissions when installing lua-lgi
This commit is contained in:
parent
6f84e794c7
commit
cd328704e5
1 changed files with 12 additions and 0 deletions
|
@ -91,6 +91,18 @@
|
||||||
chdir: /opt/git/foss/lua-lgi
|
chdir: /opt/git/foss/lua-lgi
|
||||||
cmd: make install
|
cmd: make install
|
||||||
creates: /usr/local/lib/lua/5.4/lgi/corelgilua51.so
|
creates: /usr/local/lib/lua/5.4/lgi/corelgilua51.so
|
||||||
|
environment:
|
||||||
|
LUA_CFLAGS: "-I/usr/include/lua5.4"
|
||||||
|
|
||||||
|
- name: '[lua-lgi] set permissions'
|
||||||
|
become: true
|
||||||
|
ansible.builtin.file:
|
||||||
|
path: '{{ item }}'
|
||||||
|
mode: 'u=rwX,g=rwX,o=rX'
|
||||||
|
recurse: true
|
||||||
|
loop:
|
||||||
|
- /usr/local/lib/lua
|
||||||
|
- /usr/local/share/lua/
|
||||||
|
|
||||||
- name: '[awesomewm] install window manager'
|
- name: '[awesomewm] install window manager'
|
||||||
block:
|
block:
|
||||||
|
|
Loading…
Add table
Reference in a new issue