mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-21 07:15:09 +00:00
Removed unnecessary files
This commit is contained in:
parent
428632a127
commit
592bd78800
1 changed files with 0 additions and 21 deletions
|
|
@ -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)
|
|
||||||
Loading…
Reference in a new issue