15 lines
271 B
Bash
Executable File
15 lines
271 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# This script runs 'apt-get clean' on the freshly created image,
|
|
# to make sure it has the maximum available amount of free space.
|
|
#
|
|
# Steve
|
|
# --
|
|
# $Id: 99-clean-image,v 1.4 2006-01-08 01:53:33 steve Exp $
|
|
|
|
|
|
prefix=$1
|
|
|
|
chroot $prefix /usr/bin/apt-get clean
|
|
|