2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-02-10 07:58:52 +00:00

Removed unnecessary files

This commit is contained in:
vishalseshagiri 2017-08-01 18:42:03 +05:30
parent 428632a127
commit 592bd78800

View File

@ -1,21 +0,0 @@
import subprocess
import re
command_out_string = subprocess.check_output('redis-cli -h redis -c INFO',shell=True)
#command_out_string = "cats \nare smarter than dogs"
#output = subprocess.check_output(('grep', 'redis_version'), stdin=version_string.stdout)
#print(command_out_string)
#output = command_out_string.split('\n')
#print(output)
try:
version = re.match(r'(.*)redis_version(.+?)\n', command_out_string, re.M|re.I|re.DOTALL|re.S)
print(version.group(2).strip(':'))
except:
print("Version not found")
#version_string.wait()
#out,err = version_string.communicate()
#print(out, err)