53af1188创建于 2024年8月6日历史提交
#!/bin/sh

set -e

PROGRAM=$(dpkg-divert --truename /usr/bin/arping)

if [ "$1" = configure ]; then
    if setcap cap_net_raw+ep $PROGRAM; then
        chmod u-s $PROGRAM
    fi
fi

#DEBHELPER#

exit 0

# Local variables:
# mode: shell-script
# tab-width: 4
# indent-tabs-mode: nil
# end: