OXIESEC PANEL
- Current Dir:
/
/
snap
/
certbot-dns-digitalocean
/
4349
/
meta
/
hooks
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
06/10/2025 09:50:13 PM
rwxr-xr-x
📄
post-refresh
972 bytes
06/10/2025 09:49:29 PM
rwxr-xr-x
Editing: post-refresh
Close
#!/bin/sh -e # This file is generated automatically and should not be edited manually. # get certbot version if [ ! -f "$SNAP/certbot-shared/certbot-version.txt" ]; then echo "No certbot version available; not doing version comparison check" >> "$SNAP_DATA/debuglog" exit 0 fi cb_installed=$(cat $SNAP/certbot-shared/certbot-version.txt) # get required certbot version for plugin. certbot version must be at least the plugin's # version. note that this is not the required version in setup.py, but the version number itself. cb_required=$(grep -oP "version = '\K.*(?=')" $SNAP/setup.py) $SNAP/bin/python3 -c "import sys; from packaging import version; sys.exit(1) if version.parse('$cb_installed') < version.parse('$cb_required') else sys.exit(0)" || exit_code=$? if [ "$exit_code" = "1" ]; then echo "Certbot is version $cb_installed but needs to be at least $cb_required before" \ "this plugin can be updated; will try again on next refresh." exit 1 fi