mounts: add a default value for readonly

To clarify the behavior of the mounters, specify that by default it's
not gonna mount as readonly.
This commit is contained in:
Thomas Lavocat 2023-01-30 11:54:44 +01:00 committed by Thomas Lavocat
parent 8f08433804
commit b97b78382f
4 changed files with 8 additions and 4 deletions

View file

@ -30,7 +30,8 @@ SCHEMA_2 = """
"properties": {
"readonly": {
"description": "mount the source as a readonly device",
"type": "boolean"
"type": "boolean",
"default": false
}
}
}

View file

@ -30,7 +30,8 @@ SCHEMA_2 = """
"properties": {
"readonly": {
"description": "mount the source as a readonly device",
"type": "boolean"
"type": "boolean",
"default": false
}
}
}

View file

@ -30,7 +30,8 @@ SCHEMA_2 = """
"properties": {
"readonly": {
"description": "mount the source as a readonly device",
"type": "boolean"
"type": "boolean",
"default": false
},
"uid": {
"description": "mount the source with given uid",

View file

@ -30,7 +30,8 @@ SCHEMA_2 = """
"properties": {
"readonly": {
"description": "mount the source as a readonly device",
"type": "boolean"
"type": "boolean",
"default": false
}
}
}