File Coverage

blib/lib/Config/Model/models/Fstab/Ext4FsOpt.pl
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             #
2             # This file is part of Config-Model
3             #
4             # This software is Copyright (c) 2005-2022 by Dominique Dumont.
5             #
6             # This is free software, licensed under:
7             #
8             # The GNU Lesser General Public License, Version 2.1, February 1999
9             #
10 1     1   441 use strict;
  1         3  
  1         31  
11 1     1   6 use warnings;
  1         2  
  1         72  
12              
13             return [
14             {
15             'author' => [
16             'Dominique Dumont'
17             ],
18             'copyright' => [
19             '2010,2011 Dominique Dumont'
20             ],
21             'element' => [
22             'lazy_itable_init',
23             {
24             'description' => 'If enabled and the uninit_bg feature is enabled, the inode table will not be fully initialized by mke2fs. This speeds up filesystem initialization noticeably, but it requires the kernel to finish initializing the filesystem in the background when the filesystem is first mounted.',
25             'type' => 'leaf',
26             'upstream_default' => '1',
27             'value_type' => 'boolean'
28             }
29             ],
30             'include' => [
31             'Fstab::Ext2FsOpt'
32             ],
33             'license' => 'LGPL2',
34             'name' => 'Fstab::Ext4FsOpt'
35             }
36             ]
37             ;
38