Files
NLnetLabs-krill/pkg/test-scripts/test-krillup.sh
T

18 lines
222 B
Bash
Executable File

#!/usr/bin/env bash
set -eo pipefail
set -x
case $1 in
post-install)
echo -e "\nKRILLUP VERSION:"
krillup --version
echo -e "\nKRILLUP MAN PAGE:"
man -P cat krillup
;;
post-upgrade)
;;
esac