16 lines
471 B
Bash
Executable file
16 lines
471 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# If you see this message, you probably attempted to start TeamViewer.
|
|
# Please open a terminal (Konsole, gnome-terminal, xterm),
|
|
# navigate to this folder (type 'cd /path/to/teamviewer' [Enter])
|
|
# then execute TeamViewer (type './teamviewer' [Enter])
|
|
|
|
|
|
systemctl enable --now /opt/teamviewer/tv_bin/script/teamviewerd.service
|
|
|
|
TV_SCRIPT_DIR="$(dirname "$(readlink -e "$0")")"
|
|
source "$TV_SCRIPT_DIR/tvw_main"
|
|
|
|
Main "$@"
|
|
|
|
systemctl disable --now teamviewerd
|