未验证 提交 b5ea0b4d 编写于 作者: S Simon Fels 提交者: GitHub

Merge pull request #832 from morphis/generate-zip-instead-of-tar

Generate zip instead of a tarball
......@@ -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!"
!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
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册