blob: bb954a0b400684c25728c78d55315e95c3d03159 (
plain)
1
2
3
4
5
6
|
post_upgrade() {
export SIMPLERT_INTERFACE=$(ip link show | grep "state UP" | awk -F ': ' '{ print $2}')
echo "simple-rt: To start tethering on a network interface run 'sudo systemctl start simple-rt@<interface>'"
echo " Available interfaces: $SIMPLERT_INTERFACE"
echo " To update the list of available interfaces, reinstall this package"
}
|