1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

module filesystem: partially fix idempotency issue #1457 (resizefs) (#1478) (#1720)

* Use 'xfs_info' to query fs size, that doesn't always require the device be
  mounted. Although still query mountpoint first for backward compatibility.
* Do not fail whith fstype=xfs and resizefs=yes if filesystem already fills
  its underlying device.
* Include xfs in the tasks that test idempotency of resizefs option
* Add changelogs/fragments/1478-filesystem-fix-1457-resizefs-idempotency.yml

(cherry picked from commit aa95d8a5b7)

Co-authored-by: quidame <quidame@poivron.org>
This commit is contained in:
patchback[bot] 2021-02-03 10:42:29 +01:00 committed by GitHub
parent 4bc44e4062
commit 24b1d92e84
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 64 additions and 39 deletions

View file

@ -0,0 +1,5 @@
---
bugfixes:
- filesystem - do not fail when ``resizefs=yes`` and ``fstype=xfs`` if there is nothing to do, even if
the filesystem is not mounted. This only covers systems supporting access to unmounted XFS filesystems.
Others will still fail (https://github.com/ansible-collections/community.general/issues/1457, https://github.com/ansible-collections/community.general/pull/1478).

View file

@ -240,26 +240,35 @@ class XFS(Filesystem):
GROW = 'xfs_growfs' GROW = 'xfs_growfs'
def get_fs_size(self, dev): def get_fs_size(self, dev):
cmd = self.module.get_bin_path('xfs_growfs', required=True) cmd = self.module.get_bin_path('xfs_info', required=True)
mountpoint = dev.get_mountpoint() mountpoint = dev.get_mountpoint()
if mountpoint:
rc, out, err = self.module.run_command([cmd, str(mountpoint)], environ_update=self.LANG_ENV)
else:
# Recent GNU/Linux distros support access to unmounted XFS filesystems
rc, out, err = self.module.run_command([cmd, str(dev)], environ_update=self.LANG_ENV)
if rc != 0:
self.module.fail_json(msg="Error while attempting to query size of XFS filesystem: %s" % err)
if not mountpoint: for line in out.splitlines():
# xfs filesystem needs to be mounted
self.module.fail_json(msg="%s needs to be mounted for xfs operations" % dev)
_, size, _ = self.module.run_command([cmd, '-n', str(mountpoint)], check_rc=True, environ_update=self.LANG_ENV)
for line in size.splitlines():
col = line.split('=') col = line.split('=')
if col[0].strip() == 'data': if col[0].strip() == 'data':
if col[1].strip() != 'bsize': if col[1].strip() != 'bsize':
self.module.fail_json(msg='Unexpected output format from xfs_growfs (could not locate "bsize")') self.module.fail_json(msg='Unexpected output format from xfs_info (could not locate "bsize")')
if col[2].split()[1] != 'blocks': if col[2].split()[1] != 'blocks':
self.module.fail_json(msg='Unexpected output format from xfs_growfs (could not locate "blocks")') self.module.fail_json(msg='Unexpected output format from xfs_info (could not locate "blocks")')
block_size = int(col[2].split()[0]) block_size = int(col[2].split()[0])
block_count = int(col[3].split(',')[0]) block_count = int(col[3].split(',')[0])
return block_size * block_count return block_size * block_count
def grow_cmd(self, dev): def grow_cmd(self, dev):
# Check first if growing is needed, and then if it is doable or not.
devsize_in_bytes = dev.size()
fssize_in_bytes = self.get_fs_size(dev)
if not fssize_in_bytes < devsize_in_bytes:
self.module.exit_json(changed=False, msg="%s filesystem is using the whole device %s" % (self.fstype, dev))
mountpoint = dev.get_mountpoint() mountpoint = dev.get_mountpoint()
if not mountpoint: if not mountpoint:
# xfs filesystem needs to be mounted # xfs filesystem needs to be mounted

View file

@ -1,3 +1,4 @@
---
tested_filesystems: tested_filesystems:
# key: fstype # key: fstype
# fssize: size (Mo) # fssize: size (Mo)

View file

@ -1,3 +1,4 @@
---
dependencies: dependencies:
- setup_pkg_mgr - setup_pkg_mgr
- setup_remote_tmp_dir - setup_remote_tmp_dir

View file

@ -1,3 +1,4 @@
---
- name: 'Create a "disk" file' - name: 'Create a "disk" file'
command: 'dd if=/dev/zero of={{ image_file }} bs=1M count={{ fssize }}' command: 'dd if=/dev/zero of={{ image_file }} bs=1M count={{ fssize }}'

View file

@ -43,16 +43,16 @@
- 'fs3_result is success' - 'fs3_result is success'
- 'uuid.stdout != uuid3.stdout' - 'uuid.stdout != uuid3.stdout'
- name: increase fake device
shell: 'dd if=/dev/zero bs=1M count=1 >> {{ image_file }}'
- when: fstype == 'lvm'
block:
- name: Resize loop device for LVM
command: losetup -c {{ dev }}
- when: 'grow|bool and (fstype != "vfat" or resize_vfat)' - when: 'grow|bool and (fstype != "vfat" or resize_vfat)'
block: block:
- name: increase fake device
shell: 'dd if=/dev/zero bs=1M count=1 >> {{ image_file }}'
- name: Resize loop device for LVM
command: losetup -c {{ dev }}
when: fstype == 'lvm'
- name: Expand filesystem - name: Expand filesystem
filesystem: filesystem:
dev: '{{ dev }}' dev: '{{ dev }}'
@ -69,7 +69,12 @@
- 'fs4_result is success' - 'fs4_result is success'
- 'uuid3.stdout == uuid4.stdout' # unchanged - 'uuid3.stdout == uuid4.stdout' # unchanged
- name: Try to expand filesystem again - when:
- (grow | bool and (fstype != "vfat" or resize_vfat)) or
(fstype == "xfs" and ansible_system == "Linux" and
ansible_distribution not in ["CentOS", "Ubuntu"])
block:
- name: Check that resizefs does nothing if device size is not changed
filesystem: filesystem:
dev: '{{ dev }}' dev: '{{ dev }}'
fstype: '{{ fstype }}' fstype: '{{ fstype }}'
@ -78,5 +83,5 @@
- assert: - assert:
that: that:
- 'not (fs5_result is changed)' - 'fs5_result is not changed'
- 'fs5_result is successful' - 'fs5_result is succeeded'

View file

@ -1,3 +1,4 @@
---
#################################################################### ####################################################################
# WARNING: These are designed specifically for Ansible tests # # WARNING: These are designed specifically for Ansible tests #
# and should not be used as examples of how to write Ansible roles # # and should not be used as examples of how to write Ansible roles #

View file

@ -1,3 +1,4 @@
---
- name: 'Recreate "disk" file' - name: 'Recreate "disk" file'
command: 'dd if=/dev/zero of={{ image_file }} bs=1M count={{ fssize }}' command: 'dd if=/dev/zero of={{ image_file }} bs=1M count={{ fssize }}'

View file

@ -1,3 +1,4 @@
---
- name: install filesystem tools - name: install filesystem tools
package: package:
name: '{{ item }}' name: '{{ item }}'