mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-02-10 12:47:30 +00:00
10 lines
267 B
Plaintext
10 lines
267 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# remove-lists: Remove all apt lists for space as our apport does not need them
|
||
|
#
|
||
|
# Author: Łukasz 'sil2100' Zemczak <achiang@canonical.com>
|
||
|
# Date : September 22, 2015
|
||
|
|
||
|
echo "Removing /var/lib/apt/lists/*"
|
||
|
find /var/lib/apt/lists/ -type f | xargs rm -f
|