Skip to content

Commit

Permalink
create library directory
Browse files Browse the repository at this point in the history
  • Loading branch information
bodsch committed Jul 19, 2023
1 parent a7b04b7 commit 01aed4a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---

glauth_version: 2.2.0
glauth_version: 2.1.0

glauth_system_user: glauth
glauth_system_group: glauth
Expand Down
16 changes: 8 additions & 8 deletions tasks/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@
group: "{{ glauth_system_group }}"
mode: 0755

- name: create glauth lib directory
become: true
ansible.builtin.file:
path: "{{ glauth_data_dir }}"
state: directory
group: "{{ glauth_system_group }}"
mode: 0755

- name: detect binary file for glauth on '{{ glauth_delegate_to }}'
become: false
delegate_to: "{{ glauth_delegate_to }}"
Expand Down Expand Up @@ -131,13 +139,6 @@
ansible.builtin.set_fact:
glauth_plugins: "{{ _detected_plugins.files | glauth_plugins }}"

- name: create glauth lib directory
become: true
ansible.builtin.file:
state: directory
path: "{{ glauth_data_dir }}"
mode: 0755

- name: create plugins directory for installed version
become: true
ansible.builtin.file:
Expand Down Expand Up @@ -291,5 +292,4 @@
group: root
mode: 0750


...

0 comments on commit 01aed4a

Please sign in to comment.