mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-08-11 16:54:06 +00:00
19 lines
370 B
Bash
Executable File
19 lines
370 B
Bash
Executable File
#!/bin/bash -eux
|
|
# vi: ts=4 noexpandtab
|
|
|
|
case $PASS in
|
|
ubuntu-server-minimal.ubuntu-server.installer.*.*)
|
|
exit 0
|
|
;;
|
|
ubuntu-server-minimal.ubuntu-server.installer.*)
|
|
;;
|
|
*)
|
|
exit 0
|
|
;;
|
|
esac
|
|
|
|
# remove excess kernels. auto/config arranges for the correct one to be
|
|
# installed.
|
|
|
|
apt-get --yes remove --purge 'linux-image*'
|