From 80d62ca0d6944bebba2322db941d05ef5d81dcbc Mon Sep 17 00:00:00 2001 From: Alexander Gorelyshev Date: Fri, 5 Dec 2025 10:51:41 +0400 Subject: [PATCH] lint: Restore ariable naming convention --- roles/mount_device/molecule/default/verify.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/mount_device/molecule/default/verify.yml b/roles/mount_device/molecule/default/verify.yml index 3538604..ea6fda8 100644 --- a/roles/mount_device/molecule/default/verify.yml +++ b/roles/mount_device/molecule/default/verify.yml @@ -7,12 +7,12 @@ tasks: - name: "Check mountpoint" # noqa: command-instead-of-module changed_when: false - register: mounts + register: mount_device_mounts ansible.builtin.command: cmd: mount -l - name: "Ensure test_file is mounted on test_mount" ansible.builtin.assert: - that: "'/tmp/test_file on /test_mount type ext3' in mounts.stdout" + that: "'/tmp/test_file on /test_mount type ext3' in mount_device_mounts.stdout" success_msg: "/test_mount is a mounted" fail_msg: "/test_mount is not on the list of mounts"