mirror of
https://github.com/openoms/joininbox.git
synced 2026-08-16 13:00:51 +02:00
* add amd64 image build * add bootstrap.service to always prepare ssh * add Makefile * pass GITHUB_ACTOR GITHUB_HEAD_REF to the build * download the build script from PR branch * output amd64 images to ci/amd64/builds
52 lines
1.4 KiB
Bash
52 lines
1.4 KiB
Bash
#!/bin/sh -eux
|
|
|
|
echo "remove linux-headers"
|
|
dpkg --list \
|
|
| awk '{ print $2 }' \
|
|
| grep 'linux-headers' \
|
|
| xargs apt-get -y purge;
|
|
|
|
echo "remove specific Linux kernels, such as linux-image-4.9.0-13-amd64 but keeps the current kernel and does not touch the virtual packages"
|
|
dpkg --list \
|
|
| awk '{ print $2 }' \
|
|
| grep 'linux-image-[234].*' \
|
|
| grep -v `uname -r` \
|
|
| xargs apt-get -y purge;
|
|
|
|
echo "remove linux-source package"
|
|
dpkg --list \
|
|
| awk '{ print $2 }' \
|
|
| grep linux-source \
|
|
| xargs apt-get -y purge;
|
|
|
|
echo "remove obsolete networking packages"
|
|
apt-get -y purge ppp pppconfig pppoeconf;
|
|
|
|
echo "remove popularity-contest package"
|
|
apt-get -y purge popularity-contest;
|
|
|
|
echo "remove installation-report package"
|
|
apt-get -y purge installation-report;
|
|
|
|
echo "autoremoving packages and cleaning apt data"
|
|
apt-get -y autoremove;
|
|
apt-get -y clean;
|
|
|
|
echo "remove /var/cache"
|
|
find /var/cache -type f -exec rm -rf {} \;
|
|
|
|
echo "truncate any logs that have built up during the install"
|
|
find /var/log -type f -exec truncate --size=0 {} \;
|
|
|
|
echo "blank netplan machine-id (DUID) so machines get unique ID generated on boot"
|
|
truncate -s 0 /etc/machine-id
|
|
|
|
echo "remove the contents of /tmp and /var/tmp"
|
|
rm -rf /tmp/* /var/tmp/*
|
|
|
|
echo "force a new random seed to be generated"
|
|
rm -f /var/lib/systemd/random-seed
|
|
|
|
echo "clear the history so our install isn't there"
|
|
rm -f /root/.wget-hsts
|
|
export HISTSIZE=0
|