S
Size: a a a
S
S
ВБ
☭k
sn
ВБ
{% raw %}{{ databasehost }}{% endraw %}
☭k
{% raw %}{{ databasehost }}{% endraw %}
sn
AK
AK
ВБ
failed_when
опечатался, фиксAK
I
AK
I
AK
ВБ
- name: Check /var/atlassian/application-data/confluence/ size
shell: df /var/atlassian/application-data/confluence/ --output\=size -BG | sed 's\ \\g;s\G\\g' | tail -1
register: wiki_home_size
check_mode: false
tags:
- wiki_prepare
- wiki_checks
- name: check if space in is enough in wiki_home
fail:
msg: "/var/atlassian/application-data/confluence/ ({{ wiki_home_size.stdout|float }}) does not have the minimum space required to continue ({{ wiki_home_minimal_size|float }}Gb requested)."
when: "wiki_home_size.stdout|float is lt wiki_home_minimal_size|float"
check_mode: false
tags:
- wiki_prepare
- wiki_checks