8 lines
111 B
Text
8 lines
111 B
Text
|
#!/bin/bash
|
||
|
|
||
|
cache=`readlink -f .`
|
||
|
rootfs="${cache}/rootfs"
|
||
|
|
||
|
rm -rf $rootfs/tmp/*
|
||
|
chroot $rootfs apt-get clean
|