mirror of
https://github.com/qosmio/nss-packages.git
synced 2025-12-16 16:21:53 +00:00
Files should really not stored as executable. Only make them excutable on package installation. Signed-off-by: Sean Khan <datapronix@protonmail.com>
12 lines
179 B
Bash
12 lines
179 B
Bash
#!/bin/sh
|
|
|
|
[ "$ACTION" != "add" ] && exit
|
|
|
|
. /lib/netifd/offload/disable_offloads.sh
|
|
|
|
if [ "$ACTION" = add ] && [ -n "$INTERFACE" ]; then
|
|
disable_offload "$INTERFACE"
|
|
fi
|
|
|
|
exit 0
|