15 lines
262 B
Plaintext
15 lines
262 B
Plaintext
|
post_install() {
|
||
|
echo "The Teamviewer daemon must be running for Teamviewer 10 to work."
|
||
|
echo "Execute 'sudo systemctl enable teamviewerd' in a terminal."
|
||
|
}
|
||
|
|
||
|
post_upgrade() {
|
||
|
post_install
|
||
|
}
|
||
|
|
||
|
post_remove() {
|
||
|
rm -rf /opt/teamviewer
|
||
|
}
|
||
|
|
||
|
# vim: ts=2 sw=2 et:
|