kvmd-gencert --do-the-thing

This commit is contained in:
Devaev Maxim 2019-10-16 14:53:27 +03:00
parent 7d1afc869c
commit 62dd6b96b5
2 changed files with 10 additions and 1 deletions

View File

@ -2,7 +2,7 @@ post_install() {
post_upgrade
echo "==> Generating KVMD certificate ..."
kvmd-gencert
kvmd-gencert --do-the-thing
}
post_upgrade() {

View File

@ -24,11 +24,20 @@
set -x
set -e
export LC_ALL=C
if [ `whoami` != root ]; then
echo "Only root can do that"
exit 1
fi
if [ "$1" != --do-the-thing ]; then
echo "This script will generate new self-signed SSL certificates for KVMD Nginx"
echo "and put them to /etc/kvmd/nginx/ssl. If you're sure of what you're doing,"
echo "append the option '--do-the-thing' to execute."
exit 1
fi
mkdir -p /etc/kvmd/nginx/ssl
cd /etc/kvmd/nginx/ssl