10 lines
277 B
Bash
10 lines
277 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
cpconfig -license -set "$CRYPTOPRO_LICENSE"
|
|
certmgr -inst -file /var/opt/cprocsp/keys/cert.cer -cont "$CRYPTOPRO_CONTAINER"
|
|
# certmgr -inst -file /var/opt/cprocsp/keys/cert.p7b -cont "$CRYPTOPRO_CONTAINER"
|
|
|
|
# python -m alembic upgrade head
|
|
python server.py
|