commit | f18b21e0e16a2ac5fe1600bcc35b8c89a7e51caf | [log] [tgz] |
---|---|---|
author | Patrick Williams <patrick@stwcx.xyz> | Thu Sep 09 06:57:37 2021 -0500 |
committer | Patrick Williams <patrick@stwcx.xyz> | Thu Sep 09 06:57:40 2021 -0500 |
tree | 882787aafe108f46f3ac7f432e3c12e48be89b1f | |
parent | d81cff3c7a1b4b8f4a4442c26dcac3773e457ad2 [diff] |
various: fix error metadata for systemd rules systemd-journald requires that log statements are "KEYWORD=%printf" and any spaces would cause the journal metadata to be dropped. Fix a few of them I see in the repo. Signed-off-by: Patrick Williams <patrick@stwcx.xyz> Change-Id: I8c7f84bed0a919d5042e083bf3bd87001b10aaf9
diff --git a/yaml/xyz/openbmc_project/BIOSConfig/Common.metadata.yaml b/yaml/xyz/openbmc_project/BIOSConfig/Common.metadata.yaml index bb0389d..5654021 100644 --- a/yaml/xyz/openbmc_project/BIOSConfig/Common.metadata.yaml +++ b/yaml/xyz/openbmc_project/BIOSConfig/Common.metadata.yaml
@@ -3,7 +3,7 @@ - name: AttributeSettingFailed level: ERR meta: - - str: "REASON = %s" + - str: "REASON=%s" type: string - name: AttributeReadOnly level: ERR
diff --git a/yaml/xyz/openbmc_project/Certs.metadata.yaml b/yaml/xyz/openbmc_project/Certs.metadata.yaml index 1d36c14..bdb77a8 100644 --- a/yaml/xyz/openbmc_project/Certs.metadata.yaml +++ b/yaml/xyz/openbmc_project/Certs.metadata.yaml
@@ -1,4 +1,4 @@ - name: InvalidCertificate meta: - - str: "REASON = %s" + - str: "REASON=%s" type: string
diff --git a/yaml/xyz/openbmc_project/Dump/Create.metadata.yaml b/yaml/xyz/openbmc_project/Dump/Create.metadata.yaml index 964d33c..1644193 100644 --- a/yaml/xyz/openbmc_project/Dump/Create.metadata.yaml +++ b/yaml/xyz/openbmc_project/Dump/Create.metadata.yaml
@@ -3,5 +3,5 @@ - name: QuotaExceeded meta: - - str: "REASON = %s" + - str: "REASON=%s" type: string
diff --git a/yaml/xyz/openbmc_project/User/Common.metadata.yaml b/yaml/xyz/openbmc_project/User/Common.metadata.yaml index 49ef492..2acd27a 100644 --- a/yaml/xyz/openbmc_project/User/Common.metadata.yaml +++ b/yaml/xyz/openbmc_project/User/Common.metadata.yaml
@@ -5,15 +5,15 @@ - name: UserNameGroupFail level: ERR meta: - - str: "REASON = %s" + - str: "REASON=%s" type: string - name: UserNamePrivFail level: ERR meta: - - str: "REASON = %s" + - str: "REASON=%s" type: string - name: NoResource level: ERR meta: - - str: "REASON = %s" + - str: "REASON=%s" type: string