mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 10:32:13 +08:00
30 lines
730 B
Plaintext
30 lines
730 B
Plaintext
|
|
update_cache() {
|
|
update-desktop-database -q
|
|
}
|
|
|
|
post_install() {
|
|
update_cache
|
|
|
|
/usr/bin/getent group wireshark >/dev/null 2>&1 || usr/sbin/groupadd -g 150 wireshark &>/dev/null
|
|
|
|
/usr/sbin/setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' usr/bin/dumpcap
|
|
echo "NOTE: To run wireshark as normal user you have to add yourself into wireshark group"
|
|
}
|
|
|
|
post_upgrade() {
|
|
update_cache
|
|
|
|
/usr/bin/getent group wireshark >/dev/null 2>&1 || usr/sbin/groupadd -g 150 wireshark &>/dev/null
|
|
|
|
/usr/sbin/setcap 'CAP_NET_RAW+eip CAP_NET_ADMIN+eip' usr/bin/dumpcap
|
|
}
|
|
|
|
post_remove() {
|
|
update_cache
|
|
|
|
if /usr/bin/getent group wireshark >/dev/null 2>&1; then
|
|
/usr/sbin/groupdel wireshark
|
|
fi
|
|
}
|