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:
authorAdrien Ferrand <adferrand@users.noreply.github.com>2019-09-07 00:30:25 +0300
committerBrad Warren <bmw@users.noreply.github.com>2019-09-07 00:30:25 +0300
commitab76834100d75e5330f585b9619332e2e0c8a43e (patch)
tree1591d6937e21176bd368fe6e1f1f54e243b7a932 /certbot-dns-nsone/setup.py
parentada2f5c767f11b60e246fa1a5130fa67d64f6a78 (diff)
[Windows|Linux] Forbid os.stat and os.fstat (#7325)
Fixes #7212 This PR forbid os.stat and os.fstat, and fix or provide alternatives to avoid its usage in certbot outside of certbot.compat.filesystem. * Reimplement private key mode propagation * Remove other os.stat * Remove last call of os.stat in certbot package * Forbid stat and fstat * Implement mode comparison checks * Add unit tests * Update certbot/compat/filesystem.py Co-Authored-By: Brad Warren <bmw@users.noreply.github.com> * Update certbot/compat/filesystem.py Co-Authored-By: Brad Warren <bmw@users.noreply.github.com> * Handle case where multiple ace concerns a given SID in has_min_permissions * Add a new test scenario * Add a simple test for has_same_ownership * Fix name function * Add a comment explaining an ACE structure * Move a test in its dedicated class * Improve a message error * Calculate has_min_permission result using effective permission rights to be more generic. * Change an exception message * Add comments, avoid to skip a test. * Update certbot/compat/filesystem.py Co-Authored-By: Brad Warren <bmw@users.noreply.github.com>
Diffstat (limited to 'certbot-dns-nsone/setup.py')
-rw-r--r--certbot-dns-nsone/setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/certbot-dns-nsone/setup.py b/certbot-dns-nsone/setup.py
index cb4963c17..bb945a834 100644
--- a/certbot-dns-nsone/setup.py
+++ b/certbot-dns-nsone/setup.py
@@ -8,7 +8,7 @@ version = '0.39.0.dev0'
# acme/certbot version.
install_requires = [
'acme>=0.31.0',
- 'certbot>=0.34.0',
+ 'certbot>=0.39.0.dev0',
'dns-lexicon>=2.2.1', # Support for >1 TXT record per name
'mock',
'setuptools',