try to workaround pve filesystem limitations
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
c090c42941
commit
24dd341eba
@ -1,10 +1,24 @@
|
|||||||
---
|
---
|
||||||
- block:
|
- block:
|
||||||
|
- name: Create tmp folder for pve
|
||||||
|
file:
|
||||||
|
path: "{{ __pve_tmp_dir }}"
|
||||||
|
recurse: yes
|
||||||
|
state: directory
|
||||||
|
|
||||||
- name: Configure auth provider
|
- name: Configure auth provider
|
||||||
template:
|
template:
|
||||||
src: etc/pve/domains.cfg.j2
|
src: etc/pve/domains.cfg.j2
|
||||||
dest: "{{ __pve_base_dir }}/domains.cfg"
|
dest: "{{ __pve_tmp_dir }}/domains.cfg"
|
||||||
|
owner: root
|
||||||
|
group: www-data
|
||||||
mode: 0640
|
mode: 0640
|
||||||
|
register: __pve_domains_copy
|
||||||
|
|
||||||
|
- name: Copy files to pve filesystem
|
||||||
|
command: "/bin/cp -rf {{ __pve_tmp_dir }}/domains.cfg {{ __pve_base_dir }}/domains.cfg"
|
||||||
|
when: __pve_domains_copy.results.changed
|
||||||
|
changed_when: __pve_domains_copy.results.changed
|
||||||
become: True
|
become: True
|
||||||
become_user: root
|
become_user: root
|
||||||
|
|
||||||
@ -18,8 +32,16 @@
|
|||||||
- name: Add passwd file for ldap bind
|
- name: Add passwd file for ldap bind
|
||||||
template:
|
template:
|
||||||
src: etc/pve/priv/ldap.pw.j2
|
src: etc/pve/priv/ldap.pw.j2
|
||||||
dest: "{{ __pve_base_dir }}/priv/ldap/{{ pve_auth_ldap_realm }}.pw"
|
dest: "{{ __pve_tmp_dir }}/{{ pve_auth_ldap_realm }}.pw"
|
||||||
mode: 0600
|
owner: root
|
||||||
|
group: www-data
|
||||||
|
mode:
|
||||||
|
register: __pve_auth_copy
|
||||||
|
|
||||||
|
- name: Copy files to pve filesystem
|
||||||
|
command: "/bin/cp -rf {{ __pve_tmp_dir }}/{{ pve_auth_ldap_realm }}.pw {{ __pve_base_dir }}/priv/ldap/{{ pve_auth_ldap_realm }}.pw"
|
||||||
|
when: __pve_auth_copy.results.changed
|
||||||
|
changed_when: __pve_auth_copy.results.changed
|
||||||
become: True
|
become: True
|
||||||
become_user: root
|
become_user: root
|
||||||
when:
|
when:
|
||||||
|
@ -1,2 +1,3 @@
|
|||||||
---
|
---
|
||||||
__pve_base_dir: /etc/pve
|
__pve_base_dir: /etc/pve
|
||||||
|
__pve_tmp_dir: /var/tmp/pve
|
||||||
|
Loading…
Reference in New Issue
Block a user