renewal.sh 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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. clear_log
  28. if [ -d /${git_dir} ]
  29. then
  30. git_config && git checkout ${branch} && git pull https://${GIT_USER}:$(cat /run/secrets/provision-pass)@${GIT_URL}
  31. if [ $? -ne 0 ];then message="letsencrypt. Can't pull https://${GIT_URL}"; mail_send; exit 1;fi
  32. else
  33. cd / && git clone https://${GIT_USER}:$(cat /run/secrets/provision-pass)@${GIT_URL} && cd /${git_dir} && git checkout ${branch}
  34. if [ $? -ne 0 ];then message="letsencrypt. Can't clone https://${GIT_URL}"; mail_send; exit 1;fi
  35. fi
  36. certbot renew --dry-run --config-dir /${git_dir}/letsencrypt
  37. if [ $? -ne 0 ];then message="letsencrypt. Can't execute "dry-run" renew procces. Renew certs and keys will be skipped!!!"; mail_send; exit 1;fi
  38. clear_log
  39. certbot renew --config-dir /${git_dir}/letsencrypt
  40. if [ $? -ne 0 ];then message="letsencrypt. Can't renew certs and keys. See log !!!"; mail_send; exit 1;fi
  41. echo "Renew keys and certs" > /tmp/commit.txt
  42. git_config && git add -A && git commit -F /tmp/commit.txt
  43. git push https://${GIT_USER}:$(cat /run/secrets/provision-pass)@${GIT_URL} ${branch}
  44. if [ $? -ne 0 ];then message="letsencrypt. Can't push diff to https://${GIT_URL} !!!"; mail_send; exit 1;fi
  45. message="letsencrypt.Renew Certs and Keys are success!!!"
  46. mail_send