mirror of
https://github.com/certbot/certbot.git
synced 2026-06-05 06:42:10 -04:00
* Add version number to bootstrap scripts. * Always determine Bootstrap function and version. * Write bootstrap version into venv. * Add PrevBootstrapVersion function. * Add OS bootstrapping check to phase 2. * Differentiate -n and renew when rebootstrapping. * Quote all environment variables. * Correct test condition * Add loud warning about hardcoded version list. * s/VENV_BOOTSTRAP_VERSION/BOOTSTRAP_VERSION_PATH * Properly handle noop bootstrap functions.
15 lines
302 B
Bash
Executable file
15 lines
302 B
Bash
Executable file
# If new packages are installed by BootstrapFreeBsd below, this version number
|
|
# must be increased.
|
|
BOOTSTRAP_FREEBSD_VERSION=1
|
|
|
|
BootstrapFreeBsd() {
|
|
if [ "$QUIET" = 1 ]; then
|
|
QUIET_FLAG="--quiet"
|
|
fi
|
|
|
|
pkg install -Ay $QUIET_FLAG \
|
|
python \
|
|
py27-virtualenv \
|
|
augeas \
|
|
libffi
|
|
}
|