Last active
February 19, 2023 03:13
-
-
Save Bachsau/b8f9ef0095a741932bd0d85654ce8ec3 to your computer and use it in GitHub Desktop.
Single command to update a Certbot installed via pip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh -eu | |
python3 -m venv --upgrade /opt/certbot | |
python3 -m venv --upgrade-deps /opt/certbot | |
/opt/certbot/bin/pip install --upgrade certbot certbot-dns-standalone |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment