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

hook.py « assets « certbot_integration_tests « certbot-ci - github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 483892a936f4ac6fe007d49adb23892b4fd006c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/env python
from __future__ import print_function
import os
import sys

hook_script_type = os.path.basename(os.path.dirname(sys.argv[1]))
if hook_script_type == 'deploy' and ('RENEWED_DOMAINS' not in os.environ or 'RENEWED_LINEAGE' not in os.environ):
    sys.stderr.write('Environment variables not properly set!\n')
    sys.exit(1)

print(hook_script_type)