blob: dfa6276205aebc8201b27d81edccd97a4488253f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
# vim: ft=sh ts=4 sw=4 et
post_install () {
echo "== The /usr/bin/bwrap binary has been installed setuid root."
echo " If you will be using a kernel with the USER_NS option enabled,"
echo " you may want to use disable the setuid bit. For this, run:"
echo ""
echo " # chmod u-s /usr/bin/bwrap"
echo ""
chmod u+s /usr/bin/bwrap
}
post_upgrade () {
post_install
}
|