Skip to main content

org.osbuild.btrfs

btrfs mount service

Mount a btrfs filesystem at the given location.

Host commands used: mount

Schema 1

{}

Schema 2

{
"additionalProperties": false,
"required": [
"name",
"type",
"source",
"target"
],
"properties": {
"name": {
"type": "string"
},
"type": {
"type": "string"
},
"source": {
"type": "string"
},
"partition": {
"description": "If the source device has partitions, the partition number, starting at one",
"type": "number"
},
"target": {
"type": "string"
},
"options": {
"type": "object",
"additionalProperties": false,
"properties": {
"readonly": {
"description": "mount the source as a readonly device",
"type": "boolean",
"default": false
},
"norecovery": {
"description": "Don't load the journal on mounting",
"type": "boolean",
"default": false
},
"subvol": {
"description": "Subvolume to be mounted",
"type": "string"
},
"compress": {
"type": "string"
}
}
}
}
}