samples: fix types for fstab.{freq, passno}
The schema demands that these are of type integer not string.
This commit is contained in:
parent
beb24a38b0
commit
4cbbcdba87
11 changed files with 32 additions and 32 deletions
|
|
@ -54,16 +54,16 @@
|
|||
"uuid": "7acfe2cc-4134-482a-a9d4-4979a5a87569",
|
||||
"vfs_type": "ext4",
|
||||
"path": "/",
|
||||
"freq": "1",
|
||||
"passno": "1"
|
||||
"freq": 1,
|
||||
"passno": 1
|
||||
},
|
||||
{
|
||||
"uuid": "46BB-8120",
|
||||
"vfs_type": "vfat",
|
||||
"path": "/boot/efi",
|
||||
"options": "umask=0077,shortname=winnt",
|
||||
"freq": "0",
|
||||
"passno": "2"
|
||||
"freq": 0,
|
||||
"passno": 2
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue