mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 13:54:37 +08:00
11 lines
236 B
Plaintext
11 lines
236 B
Plaintext
post_install() {
|
|
setcap cap_net_raw=ep usr/bin/ping 2>/dev/null || chmod +s usr/bin/ping
|
|
setcap cap_net_raw=ep usr/bin/ping6 2>/dev/null || chmod +s usr/bin/ping6
|
|
}
|
|
|
|
post_upgrade() {
|
|
post_install "$1"
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|