Welcome to mirror list, hosted at ThFree Co, Russian Federation.

certbot.wrapper - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c779e99399e457841946f0e2899fcb7460efa86c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
set -e
join() {
    sep=$1
    first=$2
    if [ "$first" != "" ]; then
        shift 2
        echo -n "${first}"
        for item in "$@"; do echo -n "${sep}${item}"; done
        echo
    fi
}

paths=$(for plugin_snap in $(snap connections certbot|sed -n '2,$p'|awk '$1=="content[certbot-1]"{print $3}'|cut -d: -f1); do echo /snap/$plugin_snap/current/lib/python3.8/site-packages; done)
export CERTBOT_PLUGIN_PATH=$(join : $paths)
exec certbot "$@"