Refs #8025: Role debian-base. Change vn_no_witness
This commit is contained in:
parent
ea761203e7
commit
513d7d4378
|
@ -1,4 +1,4 @@
|
|||
vn_witness: false
|
||||
vn_no_witness: false
|
||||
default_user: user
|
||||
fail2ban:
|
||||
email: "{{ sysadmin_mail }}"
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
- name: Generate root password
|
||||
when: vn_witness
|
||||
when: vn_no_witness
|
||||
block:
|
||||
- name: Search root password into Passbolt
|
||||
set_fact:
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
path: "/etc/ssh/ssh_host_{{ item.type }}_key"
|
||||
type: "{{ item.type }}"
|
||||
force: yes
|
||||
when: vn_witness
|
||||
when: vn_no_witness
|
||||
loop:
|
||||
- { type: 'rsa' }
|
||||
- { type: 'ecdsa' }
|
||||
|
|
|
@ -4,9 +4,9 @@
|
|||
register: keys_generated_marker
|
||||
- name: Generate variable if not exists
|
||||
set_fact:
|
||||
vn_witness: "{{ not keys_generated_marker.stat.exists }}"
|
||||
vn_no_witness: "{{ not keys_generated_marker.stat.exists }}"
|
||||
- name: Create marker file to indicate vn happends
|
||||
file:
|
||||
path: /etc/vn.witness
|
||||
state: touch
|
||||
when: vn_witness
|
||||
when: vn_no_witness
|
||||
|
|
Loading…
Reference in New Issue