summaryrefslogtreecommitdiff
path: root/cloudinit/cmd
diff options
context:
space:
mode:
authorDan Bungert <danielbungert@gmail.com>2022-10-25 18:48:28 -0600
committerGitHub <noreply@github.com>2022-10-25 19:48:28 -0500
commite2042df3d8ff53294c839801a5293448b40ba4bf (patch)
tree3139b43c97e6fd0dc81269dba5cf8194d6eb11d4 /cloudinit/cmd
parent2cc8920f8eae79ffadc66f0283c8fc55be83f76a (diff)
downloadcloud-init-git-e2042df3d8ff53294c839801a5293448b40ba4bf.tar.gz
apport: fix some data collection failures due to symlinks (#1797)
Apport screens out symlinks, so we should send realpath() normalized paths instead.
Diffstat (limited to 'cloudinit/cmd')
-rwxr-xr-xcloudinit/cmd/devel/logs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/cloudinit/cmd/devel/logs.py b/cloudinit/cmd/devel/logs.py
index 385554d8..1c944a0f 100755
--- a/cloudinit/cmd/devel/logs.py
+++ b/cloudinit/cmd/devel/logs.py
@@ -40,10 +40,10 @@ INSTALLER_APPORT_SENSITIVE_FILES = [
INSTALLER_APPORT_FILES = [
ApportFile("/var/log/installer/ubuntu_desktop_installer.log", "UdiLog"),
ApportFile(
- "/var/log/installer/subiquity-server-debug.log", "SubiquityLog"
+ "/var/log/installer/subiquity-server-debug.log", "SubiquityServerDebug"
),
ApportFile(
- "/var/log/installer/subiquity-client-debug.log", "SubiquityClientLog"
+ "/var/log/installer/subiquity-client-debug.log", "SubiquityClientDebug"
),
ApportFile("/var/log/installer/curtin-install.log", "CurtinLog"),
ApportFile(