blob: b806ad0feb614177e7f895ea9b67d9c873b0847d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
setcap cap_setuid=ep usr/bin/netctlgui-helper 2>/dev/null || chmod +s usr/bin/netctlgui-helper
cat << EOF
Note: users should be in network group if you want to get them access to the system bus
See https://arcanis.me/devs/netctl-gui-security-notes.html#helper
EOF
}
post_upgrade() {
post_install "$1"
}
|