mirror of
https://github.com/certbot/certbot.git
synced 2026-08-03 11:42:17 +02:00
21 lines
384 B
Bash
Executable File
21 lines
384 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Tested with:
|
|
# - Fedora 22 (x64)
|
|
# - Centos 7 (x64: on AWS EC2 t2.micro, DigitalOcean droplet)
|
|
|
|
# "git-core" seems to be an alias for "git" in CentOS 7 (yum search fails)
|
|
yum install -y \
|
|
git-core \
|
|
python \
|
|
python-devel \
|
|
python-virtualenv \
|
|
python-devel \
|
|
gcc \
|
|
swig \
|
|
dialog \
|
|
augeas-libs \
|
|
openssl-devel \
|
|
libffi-devel \
|
|
ca-certificates \
|