11 lines
232 B
Bash
Executable File
11 lines
232 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
if [ "$1" = upgrade ]; then
|
|
echo "vpn-egressctl 0.2.0 does not support in-place upgrades." >&2
|
|
echo "Remove the installed release, archive its state, then install 0.2.0 cleanly." >&2
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|