From 9b5f13fc6d58df4423e668550fde4832a600a887 Mon Sep 17 00:00:00 2001 From: Achilleas Koutsou Date: Thu, 4 Nov 2021 14:27:52 +0100 Subject: [PATCH] stages/cloud-init: add support for configuring output logging --- stages/org.osbuild.cloud-init | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/stages/org.osbuild.cloud-init b/stages/org.osbuild.cloud-init index adc39ac7..6dd585c4 100755 --- a/stages/org.osbuild.cloud-init +++ b/stages/org.osbuild.cloud-init @@ -114,6 +114,28 @@ SCHEMA = r""" } } } + }, + "output": { + "type": "object", + "minProperties": 1, + "properties": { + "init": { + "description": "Redirect the output of the init stage", + "type": "string" + }, + "config": { + "description": "Redirect the output of the config stage", + "type": "string" + }, + "final": { + "description": "Redirect the output of the final stage", + "type": "string" + }, + "all": { + "description": "Redirect the output of all stages", + "type": "string" + } + } } } }