diff --git a/live-build/ubuntu-touch/hooks/99-remove-lists.chroot b/live-build/ubuntu-touch/hooks/99-remove-lists.chroot new file mode 100755 index 00000000..4b621242 --- /dev/null +++ b/live-build/ubuntu-touch/hooks/99-remove-lists.chroot @@ -0,0 +1,9 @@ +#!/bin/sh + +# remove-lists: Remove all apt lists for space as our apport does not need them +# +# Author: Ɓukasz 'sil2100' Zemczak +# Date : September 22, 2015 + +echo "Removing /var/lib/apt/lists/*" +find /var/lib/apt/lists/ -type f | xargs rm -f