blob: 6ef8c372ba1360951bf8baf9bcf4a2d4f0febffd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
info_msg="Running agnos often \
requires the ability to bind to port 53.\
You may do so: \n \
1. By running agnos as root\n \
2. By setting capabilities using:\n \
# setcap 'cap_net_bind_service=+ep' /sur/bin/agnos"
# arg 1: the new package version
post_install() {
echo -e $info_msg
}
# arg 1: the new package version
# arg 2: the old package version
post_upgrade() {
echo -e $info_msg
}
|