stages(chattr): fix rebase artifact

This commit is contained in:
Michael Vogt 2024-03-21 10:20:00 +01:00
parent a847e6314c
commit 0a72145b13

View file

@ -5,38 +5,6 @@ import sys
import osbuild.api
from osbuild.util import parsing
SCHEMA_2 = r"""
"options": {
"additionalProperties": false,
"properties": {
"items": {
"type": "object",
"additionalProperties": false,
"patternProperties": {
"^mount:\/\/[^\/]+\/|^tree:\/\/\/": {
"type": "object",
"required": ["immutable"],
"properties": {
"immutable": {
"type": "boolean",
"description": "Make the file/directory immutable",
"default": true
}
}
}
}
}
}
},
"devices": {
"type": "object",
"additionalProperties": true
},
"mounts": {
"type": "array"
}
"""
def main(args, options):
for path, cmdargs in options["items"].items():