summaryrefslogtreecommitdiffstats
path: root/bin/g-i-installation.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/g-i-installation.sh')
-rwxr-xr-xbin/g-i-installation.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh
index 866e02f4..6904e67f 100755
--- a/bin/g-i-installation.sh
+++ b/bin/g-i-installation.sh
@@ -355,7 +355,7 @@ monitor_system() {
save_logs() {
#
- # get logs from the installed system
+ # get logs and other files from the installed system
#
# remove set +e once the code has proven its good
set +e
@@ -363,8 +363,15 @@ save_logs() {
sudo mkdir -p $SYSTEM_MNT
sudo guestmount -o uid=$(id -u) -o gid=$(id -g) -a $NAME.raw -m /dev/debian/root --ro $SYSTEM_MNT || true
if [ -d $SYSTEM_MNT/var/log ] ; then
+ #
+ # copy logs
+ #
mkdir -p $RESULTS/log
cp -r $SYSTEM_MNT/var/log/installer $RESULTS/log/
+ #
+ # get list of installed packages
+ #
+ chroot $SYSTEM_MNT dpkg -l > $RESULTS/dpkg-l
else
echo "Warning: cannot mount installed system to copy the logs..."
fi