blob: 6507da8c75f6a4edd26c78b8c82c855656483612 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/sh
set -e
# Allow users to get the speed of ethernet interfaces. This is not a security
# issue as i3status only queries the speed, it does not change any
# configuration.
if [ -x /sbin/setcap ]
then
setcap cap_net_admin=ep /usr/bin/i3status || true
else
echo "setcap(8) not installed. You need to set CAP_NET_ADMIN \
to be able to query the network link bandwidth without root privileges."
fi
#DEBHELPER#
exit 0
|