You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The test failed on Ubuntu 20.04 and 22.04 when executing this sequence:
$ dd if=/dev/zero of='/tmp/pl139938' count=10240
10240+0 records in
10240+0 records out
5242880 bytes (5.2 MB, 5.0 MiB) copied, 0.0422315 s, 124 MB/s
$ yes | mkfs -t ext3 -q '/tmp/pl139938'
Filesystem too small for a journal
The mkfs command fell back to creating an ext2 filesystem, which caused the
mount resource to fail:
$ puppet resource mount /pl256676 ensure=mounted fstype=ext3 options=loop device=/tmp/pl256676
Notice: /Mount[/pl256676]/ensure: defined 'ensure' as 'mounted'
Error: /Mount[/pl256676]: Could not evaluate: Execution of '/usr/bin/mount /pl256676' returned 32: mount: /pl256676: wrong fs type, bad option, bad superblock on /dev/loop9, missing codepage or helper program, or other error.
This updates the block count to 16384 (of size 512), so the resulting file is 8MiB.
0 commit comments