diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/g-i-installation.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/g-i-installation.sh b/bin/g-i-installation.sh index d9d4e75c..9f98b826 100755 --- a/bin/g-i-installation.sh +++ b/bin/g-i-installation.sh @@ -387,6 +387,9 @@ save_logs() { SYSTEM_MNT=/media/$NAME 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 + ls + ls $NAME.raw -la + ls $SYSTEM_MNT if [ -d $SYSTEM_MNT/var/log ] ; then # # copy logs @@ -399,6 +402,7 @@ save_logs() { chroot $SYSTEM_MNT dpkg -l > $RESULTS/dpkg-l else echo "Warning: cannot mount installed system to copy the logs..." + cp $NAME.raw $NAME.raw.bak fi sudo umount -l $SYSTEM_MNT || true } |