Merge pull request #832 from morphis/generate-zip-instead-of-tar
Generate zip instead of a tarball
This commit is contained in:
commit
b5ea0b4d7f
3 changed files with 17 additions and 8 deletions
|
|
@ -7,9 +7,7 @@ if [ $(id -u) -ne 0 ] ; then
|
|||
echo " adding a few important file for bug diagnostics to the report."
|
||||
echo " If you want to have a look at the script before giving it root"
|
||||
echo " access, please have a look at $0."
|
||||
echo
|
||||
echo "Please press any key to continue"
|
||||
read -r action
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "This script will collect a few interesting things which developers will"
|
||||
|
|
@ -30,7 +28,7 @@ cp /var/snap/anbox/common/logs/console.log* $TMPDIR || true
|
|||
$SNAP/command-anbox.wrapper system-info > $TMPDIR/system-info.log 2>&1 || true
|
||||
|
||||
if [ -e /etc/systemd/system/snap.anbox.container-manager.service ]; then
|
||||
sudo journalctl --no-pager -u snap.anbox.container-manager.service > $TMPDIR/container-manager.log 2>&1
|
||||
sudo journalctl --no-pager -u snap.anbox.container-manager.service > $TMPDIR/container-manager.log 2>&1 || true
|
||||
fi
|
||||
set +x
|
||||
|
||||
|
|
@ -48,12 +46,12 @@ fi
|
|||
|
||||
echo "Generating archive with all log files in $PWD ..."
|
||||
CURDIR=$PWD
|
||||
(cd $TMPDIR; tar cJf $CURDIR/anbox-system-diagnostics-$(date --rfc-3339=date --utc).tar.xz *)
|
||||
(cd $TMPDIR; zip -r $CURDIR/anbox-system-diagnostics-$(date --rfc-3339=date --utc).zip *)
|
||||
rm -rf $TMPDIR
|
||||
echo "DONE!"
|
||||
|
||||
echo
|
||||
echo "Now please take the tarball generate in your current directory and"
|
||||
echo "attach it to your bug report. Please don't hesitate to have a look"
|
||||
echo "into the tarball before you do so to verify you don't leak any"
|
||||
echo "Now please take the ZIP archive generated in your current directory"
|
||||
echo "and attach it to your bug report. Please don't hesitate to have a"
|
||||
echo "look into the archive before you do so to verify you don't leak any"
|
||||
echo "information you don't want!"
|
||||
|
|
|
|||
4
snap/.snapcraft/state
Normal file
4
snap/.snapcraft/state
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
!GlobalState
|
||||
assets:
|
||||
build-packages: []
|
||||
build-snaps: []
|
||||
|
|
@ -144,6 +144,13 @@ parts:
|
|||
stage-packages:
|
||||
- apparmor
|
||||
|
||||
zip:
|
||||
plugin: nil
|
||||
stage-packages:
|
||||
- zip
|
||||
prime:
|
||||
- usr/bin/zip
|
||||
|
||||
lxc:
|
||||
source: https://github.com/lxc/lxc
|
||||
source-type: git
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue