blob: 1990bde939cd55a7b7b8ddab9b280d56349d1dfd (
plain)
1
2
3
4
5
6
7
8
|
post_install() {
echo '>>> To enable debloating of an interface, enable the debloat@IFACE systemd unit.'
echo '>>> For example to debloat eth0, run `systemctl enable debloat@eth0`.'
}
post_upgrade() {
post_install
}
|