diff options
author | Jonathan Cave <jonathan.cave@canonical.com> | 2017-11-21 14:02:35 +0000 |
---|---|---|
committer | Jonathan Cave <jonathan.cave@canonical.com> | 2017-11-23 17:07:24 +0000 |
commit | 072eb5f866c712be33e87cab6abdc3e8d8691bce (patch) | |
tree | 51c5478e0ff2695f5435e73199568155bc8f72c6 /units/info | |
parent | b05e468d8292b2116fe6f8935fed6fe5b51e631c (diff) |
Remove base64 encoding and archiving/compression of collections of files
Diffstat (limited to 'units/info')
-rw-r--r-- | units/info/jobs.pxu | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/units/info/jobs.pxu b/units/info/jobs.pxu index 12ad318..b881543 100644 --- a/units/info/jobs.pxu +++ b/units/info/jobs.pxu @@ -275,14 +275,14 @@ command: plugin: attachment category_id: com.canonical.plainbox::info id: installer_bootchart.tgz -command: [ -f /var/log/installer/bootchart.tgz ] && base64 /var/log/installer/bootchart.tgz +command: [ -f /var/log/installer/bootchart.tgz ] && cat /var/log/installer/bootchart.tgz _description: Attach the installer bootchart tarball if it exists. plugin: attachment category_id: com.canonical.plainbox::info id: installer_debug.gz user: root -command: [ -f /var/log/installer/debug ] && gzip -9 -c /var/log/installer/debug | base64 +command: [ -f /var/log/installer/debug ] && gzip -9 -c /var/log/installer/debug estimated_duration: 0.1 _description: Attaches the installer debug log if it exists. @@ -408,7 +408,7 @@ id: info/kvm_output estimated_duration: 0.1 _summary: Attaches console log from the kvm_check_vm test -_description: +_description: Attaches the debug log from the virtualization/kvm_check_vm test to the results submission. command: [ -f $PLAINBOX_SESSION_SHARE/virt_debug ] && cat $PLAINBOX_SESSION_SHARE/virt_debug |