blob: bb83c0cc8b166920d18ccc20f771825c2d602fdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
post_install() {
/opt/prey-node-client/bin/prey config hooks post_install >/dev/null
gpasswd -a prey video >/dev/null
echo
echo "You should now configure prey by either"
echo "*) editing /etc/prey/prey.conf, or"
echo "*) running \"prey-tracker config gui\""
}
pre_remove() {
/opt/prey-node-client/bin/prey config hooks pre_uninstall
userdel prey
}
|