Added .ansible to .gitignore

This commit is contained in:
Klention Mali 2025-07-14 23:00:57 +02:00
commit 8b64f1cc5f
No known key found for this signature in database
GPG key ID: 777C0B2D8F048DAB
2 changed files with 3 additions and 11 deletions

1
.gitignore vendored
View file

@ -530,3 +530,4 @@ tests/integration/cloud-config-*.ini
# VSCode specific extensions
.vscode/settings.json
.ansible

View file

@ -45,16 +45,7 @@
ansible.builtin.command: pvs --noheadings -o pv_size --units M {{ loop_device_02.stdout }}
register: pv_size_output_02
- name: Showing current device mapper status
ansible.builtin.shell: dmsetup ls
- name: Making sure volume group testvg does not exist
community.general.lvg:
vg: testvg
force: true
state: absent
- name: Creating volume group on top of first device {{ loop_device_01.stdout }}
- name: Creating volume group on top of first device {{ loop_device_01.stdout }}
community.general.lvg:
vg: testvg
pvs: "{{ loop_device_01.stdout }}"
@ -76,7 +67,7 @@
state: present
register: fs_creation_result
- name: Mounting LV testlv
- name: Mounting LV testlv
ansible.posix.mount:
fstab: '{{ remote_tmp_dir }}/fstab'
path: '{{ remote_tmp_dir }}/tmp_mount'