certbot/certbot-ci/certbot_integration_tests/assets/hook.py
2020-04-20 11:45:02 -07:00

11 lines
388 B
Python
Executable file

#!/usr/bin/env python
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)
with open(sys.argv[2], 'a') as file_h:
file_h.write(hook_script_type + '\n')