You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
885 B
26 lines
885 B
#!/bin/sh
|
|
# These were only needed for building VMware/Virtualbox extensions:
|
|
echo "remove some bogus packages we don't need"
|
|
zypper --non-interactive rm --clean-deps gcc kernel-default-devel
|
|
echo "cleanup all the downloaded RPMs"
|
|
zypper clean --all
|
|
|
|
echo "clean up network interface persistence"
|
|
rm -f /etc/udev/rules.d/70-persistent-net.rules;
|
|
touch /etc/udev/rules.d/75-persistent-net-generator.rules;
|
|
|
|
echo "truncate any logs that have built up during the install"
|
|
find /var/log -type f -exec truncate --size=0 {} \;
|
|
|
|
echo "remove the contents of /tmp and /var/tmp"
|
|
rm -rf /tmp/* /var/tmp/*
|
|
|
|
echo "blank netplan machine-id (DUID) so machines get unique ID generated on boot"
|
|
truncate -s 0 /etc/machine-id
|
|
|
|
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
|