Pebble Coding

ソフトウェアエンジニアによるIT技術、数学の備忘録

let's encrypt のACMEv1終了に関するお知らせに対応した

let's encrypt から次のようなメールがきた。

According to our records, the software client you're using to get Let's
Encrypt TLS/SSL certificates issued or renewed at least one HTTPS certificate
in the past two weeks using the ACMEv1 protocol. Here are the details of one
recent ACMEv1 request from each of your account(s):

どうやら何かする必要があるらしい。
certbotのバージョンを最新にすればいいらしい。

CentOS7を使っているが、certbotのバージョンを確認してみる。

# certbot --version
certbot 0.25.1

どうもすごく古いようだ。
yumでのアップデートも効かないしどうしたもんか。
ググった挙句みつけた次のコマンドを実行する。

# yum install epel-release
# yum update
=====================================================================================================================================
 Package                             アーキテクチャー     バージョン                                        リポジトリー        容量
=====================================================================================================================================
更新します:
 certbot                             noarch               1.0.0-1.el7                                       epel                41 k
 epel-release                        noarch               7-12                                              epel                15 k
 fail2ban                            noarch               0.10.4-1.el7                                      epel                12 k
 fail2ban-firewalld                  noarch               0.10.4-1.el7                                      epel                12 k
 fail2ban-sendmail                   noarch               0.10.4-1.el7                                      epel                14 k
 fail2ban-server                     noarch               0.10.4-1.el7                                      epel               404 k
 python-zope-component               noarch               1:4.1.0-5.el7                                     epel               228 k
 python2-acme                        noarch               1.0.0-1.el7                                       epel                74 k
 python2-certbot                     noarch               1.0.0-1.el7                                       epel               358 k
 python2-certbot-nginx               noarch               1.0.0-1.el7                                       epel                76 k
 python2-future                      noarch               0.16.0-15.20181019gitbee0f3b.el7                  epel               802 k
 python2-josepy                      noarch               1.2.0-1.el7                                       epel                89 k
 python2-mock                        noarch               1.0.1-10.el7                                      epel                92 k
 python2-pip                         noarch               8.1.2-10.el7                                      epel               1.7 M
 python2-psutil                      x86_64               2.2.1-5.el7                                       epel               116 k
依存性関連でのインストールをします:
 python2-distro                      noarch               1.2.0-3.el7                                       epel                29 k

certbotが更新された。
めでたしめでたし。

EPELって初めて知ったなあ。

CentOSなどで使う、EPELってなんだ? - Qiita