7 lines
85 B
Shell
7 lines
85 B
Shell
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
[ "${1}" = "deploy_cert" ] || exit 0
|
|
|
|
/usr/sbin/nginx -s reload
|