blob: fac195172d9a7a2626cc19f95f3bf9b67fd7e641 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/bin/false
# vim: set ft=sh ts=4 sw=4 et:
. /usr/share/makepkg/util/message.sh
_notify_clients_pkg() {
msg 'NOTE: The "tsh", "tctl" and "tbot" commands are in the "teleport-client"'
msg 'package. This package contains only the server components.'
}
post_install() {
msg 'Please follow the instructions at the following page to set things up:'
msg ' https://gravitational.com/teleport/docs/quickstart/ to set things up.'
echo ''
_notify_clients_pkg
}
post_upgrade() {
_notify_clients_pkg
}
|