Skip to content

Commit

Permalink
Do not set umask when installing #55
Browse files Browse the repository at this point in the history
  • Loading branch information
infothrill committed Oct 19, 2020
1 parent e71b516 commit 5261320
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ in 2018 by Paul Kremer.

### v4.x

* fix for issue [#55](https://github.com/infothrill/ansible-role-lynis/issues/55)
* updated lynis default version to 3.0.1

### v4.0.0
Expand Down
2 changes: 2 additions & 0 deletions molecule/default/converge.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
---
- name: Converge
hosts: all
vars:
lynis_cron_initial_run: true
roles:
- role: ansible-role-lynis
3 changes: 1 addition & 2 deletions tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,13 @@
mode: '640'

- name: "[install] Extract Lynis tarball"
unarchive:
unarchive: # noqa 208 (see also https://github.com/infothrill/ansible-role-lynis/issues/55)
src: "{{ _temp.path }}/lynis-{{ lynis_version }}.tar.gz"
dest: "{{ _temp.path }}"
creates: "{{ _temp.path }}/lynis"
copy: false
owner: root
group: root
mode: '750'

- name: "[install] create .version file"
copy:
Expand Down

0 comments on commit 5261320

Please sign in to comment.