blob: a14af856c2b6b8c90b4336a2d6f48ed889e09607 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/bin/false
# vim: set ft=sh ts=4 sw=4 et:
. /usr/share/makepkg/util/message.sh
_notify_tsh_and_tctl_moved() {
msg 'NOTE: The "tsh" and "tctl" commands have been moved to the "teleport-client"'
msg 'package. This package now 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.'
_notify_tsh_and_tctl_moved
}
post_upgrade() {
_notify_tsh_and_tctl_moved
}
|