Skip to content

Commit

Permalink
chore: fix ceriticates vs certificates typo (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
hairmare authored Dec 16, 2024
1 parent dcc8ae9 commit be9dcbc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions roles/certbot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ None.
| `certbot_rsync_package_name` | `rsync` | rsync package name in repository. |
| `certbot_certbot_systemd_timer_name` | `certbot.timer` | name of certbot systemd timer for certificate renewals. |
| `certbot_certificates_src` | `/etc/letsencrypt/live/` | source directory of issued certificates and keys. |
| `certbot_ceriticates_dest` | `/home/{certbot_remot_user}/httpd/rabe_certs` | destination of certificates and keys on remote host. |
| `certbot_certificates_dest` | `/home/{certbot_remote_user}/httpd/rabe_certs` | destination of certificates and keys on remote host. |
| `certbot_certificates` | `[ "letest.rabe.ch", "letest2.rabe.ch" ]` | list of certificates managed by certbot |
| `certbot_remote_hosts` | `[ "localhost" ]` | list of remote hosts requiring issued certificates and keys. |
| `certbot_remote_user` | `revproxy` | remote user. |
Expand Down Expand Up @@ -47,7 +47,7 @@ None
certbot_rsync_package_name: rsync
certbot_certbot_systemd_timer_name: certbot-renew.timer
certbot_certificates_src: /etc/letsencrypt/live/
certbot_ceriticates_dest: /home/{certbot_remot_user}/httpd/rabe_certs
certbot_certificates_dest: /home/{certbot_remote_user}/httpd/rabe_certs
certbot_certificates: [ "letest.rabe.ch", "letest2.rabe.ch" ]
certbot_remote_hosts: [ "localhost" ]
certbot_remote_user: revproxy
Expand Down
2 changes: 1 addition & 1 deletion roles/certbot/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ certbot_certsync_script_path: /usr/local/libexec/cert_sync.sh
certbot_rsync_package_name: rsync
certbot_certbot_systemd_timer_name: certbot-renew.timer
certbot_certificates_src: /etc/letsencrypt/live/
certbot_ceriticates_dest: /home/{{certbot_remote_user}}/httpd/rabe_certs
certbot_certificates_dest: /home/{{certbot_remote_user}}/httpd/rabe_certs
certbot_certificates: [ "letest.rabe.ch", "letest2.rabe.ch" ]
certbot_remote_hosts: [ "localhost" ]
certbot_remote_user: revproxy
Expand Down
2 changes: 1 addition & 1 deletion roles/certbot/templates/cert_sync.sh.j2
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
certbot_certificates_src={{ certbot_certificates_src }}
certbot_remote_user={{ certbot_remote_user }}
certbot_certificates_dest={{ certbot_ceriticates_dest }}
certbot_certificates_dest={{ certbot_certificates_dest }}
certbot_remote_container_name={{ certbot_remote_container_name }}
exitcode=0

Expand Down

0 comments on commit be9dcbc

Please sign in to comment.