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

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'certbot-ci/certbot_integration_tests/assets/hook.py')
-rwxr-xr-xcertbot-ci/certbot_integration_tests/assets/hook.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/certbot-ci/certbot_integration_tests/assets/hook.py b/certbot-ci/certbot_integration_tests/assets/hook.py
new file mode 100755
index 000000000..39aa72ac5
--- /dev/null
+++ b/certbot-ci/certbot_integration_tests/assets/hook.py
@@ -0,0 +1,11 @@
+#!/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')