Skip to content

Commit f05fb5c

Browse files
authored
Merge pull request #40 from joshcooper/ubuntu2204
(maint) Create a larger filesystem
2 parents 713a6b0 + 34c9497 commit f05fb5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/acceptance/lib/mount_utils.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def create_filesystem(host, mount_name)
6565
on(host, "mklv -y #{mount_name} #{volume_group} 1M")
6666
on(host, "mkfs -V #{fs_type} -l #{mount_name} /dev/#{mount_name}")
6767
when %r{el-|centos|fedora|sles|debian|ubuntu|cumulus}
68-
on(host, "dd if=/dev/zero of='/tmp/#{mount_name}' count=10240", acceptable_exit_codes: [0, 1])
68+
on(host, "dd if=/dev/zero of='/tmp/#{mount_name}' count=16384", acceptable_exit_codes: [0, 1])
6969
on(host, "yes | mkfs -t #{fs_type} -q '/tmp/#{mount_name}'", acceptable_exit_codes: (0..254))
7070
else
7171
# TODO: Add Solaris and OSX support, as per PUP-5201 and PUP-4823

0 commit comments

Comments
 (0)