generate.sh 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. #!/bin/bash
  2. git_dir="pki"
  3. branch="100883"
  4. log_file="/var/log/letsencrypt/letsencrypt.log"
  5. #git_url="git.sdsys.ru/sdsys/pki.git"
  6. function mail_send {
  7. echo "${message}"|mail -s "Attention! Certificate status!" \
  8. -S smtp=${SMTP_SERVER} \
  9. -S smtp-use-starttls \
  10. -S smtp-auth=login \
  11. -S ssl-verify=ignore \
  12. -S smtp-auth-user=${JENKINS_MAIL_USER} \
  13. -S smtp-auth-password=$(cat /run/secrets/jenkins-mail-pass) \
  14. -S nss-config-dir=/etc/pki/nssdb \
  15. -S from=${JENKINS_MAIL_USER} \
  16. -a ${log_file} \
  17. ${RECIPIENT_MAIL_BOX}
  18. }
  19. function git_config {
  20. cd /${git_dir}
  21. git config --global user.email "${JENKINS_MAIL_USER}"
  22. git config --global user.name "Jenkins"
  23. }
  24. function clear_log {
  25. echo -n > ${log_file}
  26. }
  27. if [ -z "$*" ]; then message="letsencrypt. No domain specified!!!"; mail_send; exit 1;fi
  28. clear_log
  29. if [ -d /${git_dir} ]
  30. then
  31. git_config && git checkout ${branch} && git pull https://${GIT_USER}:$(cat /run/secrets/provision-pass)@${GIT_URL}
  32. if [ $? -ne 0 ];then message="letsencrypt. Can't pull https://${GIT_URL}"; mail_send; exit 1;fi
  33. else
  34. cd / && git clone https://${GIT_USER}:$(cat /run/secrets/provision-pass)@${GIT_URL} && cd /${git_dir} && git checkout ${branch}
  35. if [ $? -ne 0 ];then message="letsencrypt. Can't clone https://${GIT_URL}"; mail_send; exit 1;fi
  36. fi
  37. domain=$(echo "$*" | sed 's/ / -d /g')
  38. certbot certonly --dry-run --webroot -w /var/www/html --config-dir /${git_dir}/letsencrypt -m admin@sdsys.ru -d ${domain}
  39. if [ $? -ne 0 ];then message="letsencrypt. Can't execute "dry-run" for $(echo $*). Generate cert and key will be skipped!!!"; mail_send; exit 1;fi
  40. clear_log
  41. certbot certonly --webroot -w /var/www/html --config-dir /${git_dir}/letsencrypt -m admin@sdsys.ru -d ${domain}
  42. if [ $? -ne 0 ];then message="letsencrypt. Can't generate cert and key for $(echo $*). See log !!!"; mail_send; exit 1;fi
  43. echo "Generate new key and cert for $(echo $*)" > /tmp/commit.txt
  44. git_config && git add -A && git commit -F /tmp/commit.txt
  45. git push https://${GIT_USER}:$(cat /run/secrets/provision-pass)@${GIT_URL} ${branch}
  46. if [ $? -ne 0 ];then message="letsencrypt. Can't push diff to https://${GIT_URL} !!!"; mail_send; exit 1;fi
  47. message="letsencrypt. Certs for domain $(echo $*) is generated!!!"
  48. mail_send