blob: 90d5d5a6d133e28fde51b8739cda786078d6f265 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
post_install() {
post_upgrade "${@}"
}
post_upgrade() {
echo -e "\e[34m"
cat << MSG
>>> Usage-information: certbot certonly --authenticator dns-opteamax \\
>>> --dns-opteamax-credentials /etc/letsencrypt/.secrets/oxapi_credentials.ini \\
>>> -d 'example.com'
>>> Please don't forget to set your correct credentials in /etc/letsencrypt/.secrets/oxapi_credentials.ini
MSG
echo -e "\e[0m"
}
post_remove() {
echo -e "\e[34mDon't forget to remove credentials if no longer needed!\e[0m"
}
|