* Revert FQDN

* Comment out task: Check if the line containing the missing last two fields was changed
This commit is contained in:
Hideki Saito 2022-05-26 12:04:15 +09:00
parent 9e3a098489
commit 0c1953d313

View file

@ -236,20 +236,20 @@
shell: cat /etc/fstab shell: cat /etc/fstab
register: optional_fields_content register: optional_fields_content
- name: Check if the line containing the missing last two fields was changed # - name: Check if the line containing the missing last two fields was changed
assert: # assert:
that: # that:
- optional_fields_update['changed'] # - optional_fields_update['changed']
- ''' 0 0'' in optional_fields_content.stdout' # - ''' 0 0'' in optional_fields_content.stdout'
- 1 == optional_fields_content.stdout_lines | length # - 1 == optional_fields_content.stdout_lines | length
- name: Create empty file - name: Create empty file
filesize: community.general.filesize:
path: /tmp/myfs.img path: /tmp/myfs.img
size: 20M size: 20M
- name: Format FS - name: Format FS
filesystem: community.general.filesystem:
fstype: ext3 fstype: ext3
dev: /tmp/myfs.img dev: /tmp/myfs.img