mirror of
https://github.com/certbot/certbot.git
synced 2026-03-25 20:04:16 -04:00
10 lines
204 B
Python
10 lines
204 B
Python
#!/usr/bin/env python
|
|
|
|
print "WARNING: Redis database will be cleared!"
|
|
raw_input("Press Enter to continue. ")
|
|
|
|
import redis
|
|
r = redis.Redis()
|
|
|
|
for i in xrange(len(r.keys())):
|
|
r.delete(r.randomkey())
|