blob: 6f0cd3703fb0af2df6cb8731d01e3a566509f7de (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_upgrade() {
if [[ $(vercmp $2 6.2p2) = -1 ]]; then
cat <<EOF
==> The sshd daemon has been moved to /usr/bin alongside all binaries.
==> Please update this path in your scripts if applicable.
EOF
fi
}
|